diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-04-01 20:40:12 -0500 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-04-01 20:40:12 -0500 |
commit | 39799228afdff8b1b889809289992c401e450caf (patch) | |
tree | b1c3c3807b726da24f32f26afe5916058958f5a7 /qt-mobile | |
parent | 3aa219c689a1e1abc1a21e81af2764134b1c2c89 (diff) | |
download | subsurface-39799228afdff8b1b889809289992c401e450caf.tar.gz |
QML UI: fix small bug in main menu
One Action hadn't been converted to a Kirigami.Action.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r-- | qt-mobile/qml/main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml index 0b8e24adc..bcfc3f7b8 100644 --- a/qt-mobile/qml/main.qml +++ b/qt-mobile/qml/main.qml @@ -125,7 +125,7 @@ Kirigami.ApplicationWindow { manager.loadDives(); } } - Action { + Kirigami.Action { text: "Upload to cloud" onTriggered: { globalDrawer.close() |