From 7bc139c50db998d5401168d25bb05721cb46193d Mon Sep 17 00:00:00 2001 From: "R. Aidan Campbell" Date: Sun, 8 Jul 2018 08:44:09 -0700 Subject: [PATCH] Now with identification of the currently running app --- app/gui/AppView.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/gui/AppView.qml b/app/gui/AppView.qml index dec9ef70..8d75e065 100644 --- a/app/gui/AppView.qml +++ b/app/gui/AppView.qml @@ -39,6 +39,12 @@ GridView { delegate: Item { width: 200; height: 300; + Component.onCompleted: { + if (model.running) { + appNameText.text = "Running - " + appNameText.text + } + } + Image { id: appIcon anchors.horizontalCenter: parent.horizontalCenter;