diff options
Diffstat (limited to 'app/qml')
| -rw-r--r-- | app/qml/pages/WatchPage.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/qml/pages/WatchPage.qml b/app/qml/pages/WatchPage.qml index 55f4db0..730f850 100644 --- a/app/qml/pages/WatchPage.qml +++ b/app/qml/pages/WatchPage.qml @@ -96,6 +96,7 @@ Page { property var appInfo: pebbled.appInfoByUuid(modelData) property bool isKnownApp: appInfo.hasOwnProperty("uuid") property bool isLocalApp: appInfo.hasOwnProperty("isLocal") && appInfo.isLocal + property bool isConfigurable: appInfo.hasOwnProperty("isConfigurable") && appInfo.isConfigurable property bool busy: false function configure() { @@ -212,7 +213,7 @@ Page { } MenuItem { text: qsTr("Configure...") - visible: !isEmptySlot && isLocalApp + visible: !isEmptySlot && isLocalApp && isConfigurable onClicked: configure(); } MenuItem { |
