diff options
author | Alessandro Portale <alessandro.portale@nokia.com> | 2009-11-17 15:46:28 (GMT) |
---|---|---|
committer | Alessandro Portale <alessandro.portale@nokia.com> | 2009-11-17 17:35:44 (GMT) |
commit | d95d77d40ad6ef82b9c043307fa72969c369938b (patch) | |
tree | 31049469c2c3b615ef5634aacdee8e6bea999881 /examples/sql | |
parent | 330d0bb75af1ffc534015d63af3dcd81ca971ce1 (diff) | |
download | Qt-d95d77d40ad6ef82b9c043307fa72969c369938b.zip Qt-d95d77d40ad6ef82b9c043307fa72969c369938b.tar.gz Qt-d95d77d40ad6ef82b9c043307fa72969c369938b.tar.bz2 |
showMaximized() lets us see SoftKeys
The current implementation would not show Softkeys as
long as we show a widget via showFullScreen. Therefore,
on Symbian we will for now use showMaximized
Reviewed-By: Jason Barron
Diffstat (limited to 'examples/sql')
-rw-r--r-- | examples/sql/drilldown/view.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/sql/drilldown/view.cpp b/examples/sql/drilldown/view.cpp index ff4c511..abc31c9 100644 --- a/examples/sql/drilldown/view.cpp +++ b/examples/sql/drilldown/view.cpp @@ -134,7 +134,7 @@ void View::showInformation(ImageItem *image) #ifndef Q_OS_SYMBIAN window->show(); #else - window->showFullScreen(); + window->showMaximized(); #endif } else { InformationWindow *window; @@ -147,7 +147,7 @@ void View::showInformation(ImageItem *image) window->move(pos() + QPoint(20, 40)); window->show(); #else - window->showFullScreen(); + window->showMaximized(); #endif informationWindows.append(window); } |