Skip to content

Commit 8186e70

Browse files
committed
Add missing Qt.Window flag to ApplicationWindow on iOS and Android
1 parent c720435 commit 8186e70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qml/qgismobileapp.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ApplicationWindow {
4141
id: mainWindow
4242
objectName: 'mainWindow'
4343
visible: true
44-
flags: Qt.platform.os === "ios" || Qt.platform.os === "android" ? Qt.ExpandedClientAreaHint | Qt.NoTitleBarBackgroundHint : Qt.Window | Qt.WindowTitleHint | Qt.WindowSystemMenuHint | Qt.WindowMinMaxButtonsHint | Qt.WindowCloseButtonHint | (sceneBorderless ? Qt.FramelessWindowHint : 0)
44+
flags: Qt.platform.os === "ios" || Qt.platform.os === "android" ? Qt.Window | Qt.ExpandedClientAreaHint | Qt.NoTitleBarBackgroundHint : Qt.Window | Qt.WindowTitleHint | Qt.WindowSystemMenuHint | Qt.WindowMinMaxButtonsHint | Qt.WindowCloseButtonHint | (sceneBorderless ? Qt.FramelessWindowHint : 0)
4545

4646
topPadding: 0
4747
bottomPadding: 0

0 commit comments

Comments
 (0)