summaryrefslogtreecommitdiffstats
path: root/launcher/qml/IconItem.qml
diff options
context:
space:
mode:
authorArnaud Ferraris <arnaud.ferraris@collabora.com>2021-12-10 12:44:27 +0100
committerArnaud Ferraris <arnaud.ferraris@collabora.com>2021-12-20 21:08:46 +0100
commit9495545c38d5e72014cba05f8ea79c98ed3321a1 (patch)
tree51a4fcd709e772c4ed824ed9757c17d3463ef4f2 /launcher/qml/IconItem.qml
parent20cd96660d4bfb44e0be5695f71a92d5fb53a143 (diff)
launcher: rely on applaunchd for application startupmarlin_12.91.0marlin/12.91.012.91.0
In the new App FW setup, `launcher` should only instruct `applaunchd` to execute an application. In order to do so, it must first build a list of available applications by looking for and parsing `.desktop` files in relevant folders. Then, when an application must be started, it has to call the corresponding `applaunchd` method through D-Bus, which will then handle the application startup using either command line execution or D-Bus activation. Bug-AGL: SPEC-4159 SPEC-4160 Signed-off-by: Arnaud Ferraris <arnaud.ferraris@collabora.com> Change-Id: Ie2f55a5acb64ed90aa6aafb687c927d87f6cc0aa
Diffstat (limited to 'launcher/qml/IconItem.qml')
-rw-r--r--launcher/qml/IconItem.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/qml/IconItem.qml b/launcher/qml/IconItem.qml
index 5adbe81..5207196 100644
--- a/launcher/qml/IconItem.qml
+++ b/launcher/qml/IconItem.qml
@@ -39,7 +39,7 @@ Item {
anchors.horizontalCenter: parent.horizontalCenter
width: 220
height: width
- source: './images/%1_%2.svg'.arg(model.icon).arg(loc.pressed && (loc.index === model.index || loc.currentId === model.id) ? 'active' : 'inactive')
+ source: main.icon
antialiasing: item.state !== ''
property string initial: model.name.substring(0,1).toUpperCase()