From daf8f36dd43d23f25fea27d8191d5ce6e28db276 Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Wed, 18 Nov 2015 23:47:00 +0200 Subject: main.qml: fix crash on native Win32 desktop MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Testing the mobile application on Win32 desktop results in a crash. Using ApplicationWindow for some reason makes the executable enter an inifinity loop on startup until it runs out of RAM. The output is: setGeometryDp: Unable to set geometry 160x1200+720+426 on ApplicationWindow_ QMLTYPE_12_QML_111/''. Resulting geometry: 160x885+720+426 (frame: 4, 23, 4, 4, custom margin: 0, 0, 0, 0, minimum size: 0x47, maximum size: 16777215x 16777215). To fix the crash use "Window" instead of "ApplicationWindow". Signed-off-by: Lubomir I. Ivanov ACKed-by: Sebastian Kügler Signed-off-by: Dirk Hohndel --- qt-mobile/qml/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qt-mobile/qml') diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml index f28a5795f..c3117b9d5 100644 --- a/qt-mobile/qml/main.qml +++ b/qt-mobile/qml/main.qml @@ -9,7 +9,7 @@ import org.subsurfacedivelog.mobile 1.0 import "qrc:/qml/theme" as Theme -ApplicationWindow { +Window { title: qsTr("Subsurface mobile") property bool fullscreen: true property alias messageText: message.text -- cgit v1.2.3-70-g09d2