diff options
Diffstat (limited to 'qt-mobile/main.qml')
-rw-r--r-- | qt-mobile/main.qml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/qt-mobile/main.qml b/qt-mobile/main.qml index f45ab9b60..f75476537 100644 --- a/qt-mobile/main.qml +++ b/qt-mobile/main.qml @@ -72,6 +72,13 @@ ApplicationWindow { stackView.push(logWindow) } } + + MenuItem { + text: "Theme Information" + onTriggered: { + stackView.push(themetest) + } + } } StackView { @@ -201,6 +208,11 @@ ApplicationWindow { visible: false } + ThemeTest { + id: themetest + visible: false + } + Component.onCompleted: { print("units.gridUnit is: " + units.gridUnit); } |