mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML-UI: allow toggling verbose mode from the UI
Hidden in the Developer menu. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
41c59c1c8d
commit
c3ebeadb34
3 changed files with 28 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue