diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2019-02-12 11:39:14 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2019-02-12 11:39:14 +0000 |
commit | a4d7197d3ccc411b98666a75126534849141acde (patch) | |
tree | d2de909fd51d6b5c4595114a1fac9594e8e59d5d | |
parent | 171e9dc0ada1109208792dfaebb273e4ca8f7871 (diff) | |
parent | d21de3da0be206f4ff0bc8543d4168e745f369b4 (diff) |
Merge "Use new event for activating window"needlefish_13.93.0needlefish/13.93.0marlin_12.93.0marlin_12.92.0marlin_12.91.0marlin_12.90.1marlin_12.90.0marlin/12.93.0marlin/12.92.0marlin/12.91.0marlin/12.90.1marlin/12.90.0lamprey_11.92.0lamprey_11.91.0lamprey/11.92.0lamprey/11.91.0koi_10.93.0koi_10.92.0koi_10.91.0koi/10.93.0koi/10.92.0koi/10.91.0jellyfish_9.99.4jellyfish_9.99.3jellyfish_9.99.2jellyfish_9.99.1jellyfish/9.99.4jellyfish/9.99.3jellyfish/9.99.2jellyfish/9.99.1icefish_8.99.5icefish_8.99.4icefish_8.99.3icefish_8.99.2icefish_8.99.1icefish/8.99.5icefish/8.99.4icefish/8.99.3icefish/8.99.2icefish/8.99.1halibut_8.0.6halibut_8.0.5halibut_8.0.4halibut_8.0.3halibut_8.0.2halibut_8.0.1halibut_8.0.0halibut_7.99.3halibut_7.99.2halibut_7.99.1halibut/8.0.6halibut/8.0.5halibut/8.0.4halibut/8.0.3halibut/8.0.2halibut/8.0.1halibut/8.0.0halibut/7.99.3halibut/7.99.2halibut/7.99.19.99.49.99.39.99.29.99.18.99.58.99.48.99.38.99.28.99.18.0.68.0.58.0.48.0.38.0.28.0.18.0.07.99.37.99.27.99.113.93.012.93.012.92.012.91.012.90.112.90.011.92.011.91.010.93.010.92.010.91.0halibut
-rw-r--r-- | src/aglextras/hmi/aglwmclient.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/aglextras/hmi/aglwmclient.cpp b/src/aglextras/hmi/aglwmclient.cpp index 5c79832..a754763 100644 --- a/src/aglextras/hmi/aglwmclient.cpp +++ b/src/aglextras/hmi/aglwmclient.cpp @@ -154,11 +154,11 @@ AGLWmClient::AGLWmClient (const QString&, int port, QString) } ); - // Set the event handler for Event_TapShortcut which will activate the surface for windowmanager + // Set the event handler for Event_ShowWindow which will activate the surface for windowmanager h_ptr->set_event_handler ( - LibHomeScreen::Event_TapShortcut, + LibHomeScreen::Event_ShowWindow, [this](json_object* object) { - qDebug("Surface got tapShortcut\n"); + qDebug("Surface got showWindow\n"); activate_window(); } ); |