aboutsummaryrefslogtreecommitdiffstats
path: root/launcher/qml/Launcher.qml
diff options
context:
space:
mode:
Diffstat (limited to 'launcher/qml/Launcher.qml')
-rw-r--r--launcher/qml/Launcher.qml17
1 files changed, 16 insertions, 1 deletions
diff --git a/launcher/qml/Launcher.qml b/launcher/qml/Launcher.qml
index 822c964..bd61af1 100644
--- a/launcher/qml/Launcher.qml
+++ b/launcher/qml/Launcher.qml
@@ -75,6 +75,17 @@ ApplicationWindow {
}
}
+ Timer {
+ id: timer_start_show
+ interval: 500
+ running: false
+ repeat: false
+
+ onTriggered: {
+ console.log("Should be able to see the the surface as the compositor will by default show it")
+ }
+ }
+
MouseArea {
id: loc
anchors.fill: parent
@@ -89,7 +100,11 @@ ApplicationWindow {
return
}
if (currentId === '') {
- homescreenHandler.tapShortcut(applicationModel.appid(loc.index))
+ //homescreenHandler.tapShortcut(applicationModel.appid(loc.index))
+ var app_id = applicationModel.appid(loc.index)
+ console.log("Trying to launch " + app_id)
+ homescreenHandler.launch(app_id)
+ timer_start_show.running = true
} else {
currentId = ''
}