diff options
Diffstat (limited to 'qt-mobile/main.qml')
-rw-r--r-- | qt-mobile/main.qml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/qt-mobile/main.qml b/qt-mobile/main.qml index 97f1da6bb..5c8c04b2c 100644 --- a/qt-mobile/main.qml +++ b/qt-mobile/main.qml @@ -100,11 +100,21 @@ ApplicationWindow { anchors.leftMargin: units.spacing anchors.right: topPart.right anchors.rightMargin: units.spacing + Image { + source: "qrc:/qml/subsurface-mobile-icon.png" + Layout.maximumWidth: units.gridUnit * 2 + Layout.preferredWidth: units.gridUnit * 2 + Layout.preferredHeight: units.gridUnit * 2 + } Text { text: qsTr("Subsurface mobile") font.pointSize: 18 + Layout.fillWidth: false color: theme.accentTextColor } + Item { + Layout.fillWidth: true + } Button { id: prefsButton text: "\u22ee" |