diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-04-17 12:24:59 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-04-18 09:00:21 -0700 |
commit | 47506028ca81be864b4cf2f6b87b8e81d18052bc (patch) | |
tree | 1ad43dae7ba0b535ac27a572bc272c20acee3335 /mobile-widgets | |
parent | 39784be4e81039fb18379914c049d7a9583894c1 (diff) | |
download | subsurface-47506028ca81be864b4cf2f6b87b8e81d18052bc.tar.gz |
mobile UI: indicate status of verbose flag
This way the user can verify that they have set the log to verbose
mode in the developer menu.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 091e53969..e6efae9e9 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -526,7 +526,7 @@ if you have network connectivity and want to sync your data to cloud storage."), } Kirigami.Action { - text: qsTr("Enable verbose logging") + text: qsTr("Enable verbose logging (currently: %1)").arg(manager.verboseEnabled) onTriggered: { showPassiveNotification(qsTr("Not persistent"), 3000) globalDrawer.close() |