diff options
author | Joakim Bygdell <j.bygdell@gmail.com> | 2017-07-19 16:35:46 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-23 03:20:58 +0900 |
commit | a66d876ed0f0f36ecf133ecaf61181c0133cb193 (patch) | |
tree | f8a8bb19c7ec2d0503634470c901feb43ea19fba /mobile-widgets/qmlmanager.cpp | |
parent | 0eef27376a7f0f17ef0225d33db7bfe61f52d8f9 (diff) | |
download | subsurface-a66d876ed0f0f36ecf133ecaf61181c0133cb193.tar.gz |
QML UI: add checkbox to show/hide developer menu
Add a checkbox to the preferences page to facilitate selective visibility of the developer menu. With the coresponding function in qmlmanager.
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
Diffstat (limited to 'mobile-widgets/qmlmanager.cpp')
-rw-r--r-- | mobile-widgets/qmlmanager.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index 13cf0b4fc..3612fb73c 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -1583,6 +1583,17 @@ void QMLManager::setLibdcLog(bool value) emit libdcLogChanged(); } +bool QMLManager::developer() const +{ + return m_developer; +} + +void QMLManager::setDeveloper(bool value) +{ + m_developer = value; + emit developerChanged(); +} + bool QMLManager::btEnabled() const { return m_btEnabled; |