Hide statusbar in Landscape orientation
authorLuciano Montanaro <mikelima@cirulla.net>
Sun, 2 Oct 2011 15:01:17 +0000 (17:01 +0200)
committerLuciano Montanaro <mikelima@cirulla.net>
Tue, 27 Dec 2011 22:16:52 +0000 (23:16 +0100)
It helps to have a slightly larger view:

application/resources/harmattan/qml/main.qml

index e65c45a..ea66b0a 100644 (file)
@@ -4,7 +4,7 @@ import com.nokia.meego 1.0
 PageStackWindow {
     id: window
     showToolBar: true
-    showStatusBar: true
+    showStatusBar: screen.currentOrientation === Screen.Landscape ? false : true
     initialPage: StationListPage {
     }
 }