diff options
Diffstat (limited to 'qt-mobile/qml')
-rw-r--r-- | qt-mobile/qml/main.qml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml index cd1e2501a..30e79e22c 100644 --- a/qt-mobile/qml/main.qml +++ b/qt-mobile/qml/main.qml @@ -106,6 +106,15 @@ 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; + checked = !checked; + } + } } ] // end actions |