summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-06-21 09:19:24 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-06-21 09:29:24 -0700
commitfc4153f8acddf622024aaa5cbc06613717dc7ef2 (patch)
treeb07b1a97cb122bac8866dd0a8e35b2cdc45b5132 /mobile-widgets/qml
parentd7be3b21d6284999d9927c13ed98a0ed2865f02e (diff)
downloadsubsurface-fc4153f8acddf622024aaa5cbc06613717dc7ef2.tar.gz
QML UI: make title bar taller again on Android
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r--mobile-widgets/qml/main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml
index 88206ae7b..2c1d3c96d 100644
--- a/mobile-widgets/qml/main.qml
+++ b/mobile-widgets/qml/main.qml
@@ -14,7 +14,7 @@ Kirigami.ApplicationWindow {
header: Kirigami.ApplicationHeader {
minimumHeight: 0
- preferredHeight: Kirigami.Units.gridUnit * (Qt.platform.os == "ios" ? 2 : 1)
+ preferredHeight: Math.round(Kirigami.Units.gridUnit * (Qt.platform.os == "ios" ? 2 : 1.5))
maximumHeight: Kirigami.Units.gridUnit * 2
}
property bool fullscreen: true