diff options
| author | Tomasz Sterna <tomek@xiaoka.com> | 2015-01-03 19:30:15 +0100 |
|---|---|---|
| committer | Tomasz Sterna <tomek@xiaoka.com> | 2015-01-03 19:30:15 +0100 |
| commit | eac37967cc535a3ac43a712b52b4bf73b96ec19c (patch) | |
| tree | 8088389694620e8d8eba8e15bd9bfdd7de46e462 /app/qml/pages/InstallAppDialog.qml | |
| parent | 516dc948a8f180520352175e79f0139dde9b8d1f (diff) | |
Support for watch apps, not installed on phoneRELEASE_0.13.js1
Needed to show app name instead of "unknown app" on the
app management screen.
Diffstat (limited to 'app/qml/pages/InstallAppDialog.qml')
| -rw-r--r-- | app/qml/pages/InstallAppDialog.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/qml/pages/InstallAppDialog.qml b/app/qml/pages/InstallAppDialog.qml index fa96c28..1510c57 100644 --- a/app/qml/pages/InstallAppDialog.qml +++ b/app/qml/pages/InstallAppDialog.qml @@ -24,6 +24,8 @@ Dialog { id: appDelegate contentHeight: Theme.itemSizeSmall + visible: modelData.isLocal + property string uuid: modelData.uuid property bool alreadyInstalled: pebbled.isAppInstalled(uuid) @@ -41,7 +43,7 @@ Dialog { Image { id: appImage anchors.centerIn: parent - source: "image://pebble-app-icon/" + uuid; + source: appDelegate.visible ? "image://pebble-app-icon/" + uuid : "" scale: 2 } } |
