Now with identification of the currently running app

This commit is contained in:
R. Aidan Campbell
2018-07-08 08:44:09 -07:00
parent c27711582a
commit 7bc139c50d

View File

@@ -39,6 +39,12 @@ GridView {
delegate: Item {
width: 200; height: 300;
Component.onCompleted: {
if (model.running) {
appNameText.text = "<font color=\"green\">Running</font><font color=\"white\"> - </font>" + appNameText.text
}
}
Image {
id: appIcon
anchors.horizontalCenter: parent.horizontalCenter;