QML UI: make title bar taller again on Android

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2017-06-21 09:19:24 -07:00
parent d7be3b21d6
commit fc4153f8ac

View file

@ -14,7 +14,7 @@ Kirigami.ApplicationWindow {
header: Kirigami.ApplicationHeader { header: Kirigami.ApplicationHeader {
minimumHeight: 0 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 maximumHeight: Kirigami.Units.gridUnit * 2
} }
property bool fullscreen: true property bool fullscreen: true