diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-03-24 16:37:23 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-03-24 16:37:23 -0700 |
commit | a9cf089e1c6ca4bd6a53517ecdb7c25f4fafbb28 (patch) | |
tree | 4c83c5ca4e681f0db0998f7f206dc39b0ed815e3 | |
parent | 5f9df02ffc0d33c3e92df6839c5dbca0609c00cc (diff) | |
download | subsurface-a9cf089e1c6ca4bd6a53517ecdb7c25f4fafbb28.tar.gz |
QML UI: remove verbose option from Developer menu
We now log everything that's relevant to the application log that is shown
in the UI.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-mobile/qml/main.qml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml index d4a56a50d..34e4f3cff 100644 --- a/qt-mobile/qml/main.qml +++ b/qt-mobile/qml/main.qml @@ -187,14 +187,6 @@ MobileComponents.ApplicationWindow { stackView.push(themetest) } } - Action { - checkable: true - checked: manager.verboseEnabled - text: checked ? "Disable verbose (for adb logcat)" : "Enable verbose (for adb logcat)" - onToggled: { - manager.verboseEnabled = checked; - } - } }, Action { text: "User manual" |