summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2018-10-30 17:05:15 +0800
committerwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2018-10-30 17:06:29 +0800
commite884c02d9da06a59019c66dc31d1d5350eab1504 (patch)
tree0476fd3c4540d9d44b9db8c44e25b77b6727e352
parent8e1f5c1b14dc9b739ce45db3e66ee2c97c8940ad (diff)
delete application_name check in tap_shortcut event
because of now homescreen-service emit event to one application, delete the applciation_name check. Bug-AGL: SPEC-1764 Change-Id: I870e93eafb22242aa29dbd6c7ba7d001a219ae3f Signed-off-by: wang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>
-rw-r--r--app/main.cpp12
1 files changed, 2 insertions, 10 deletions
diff --git a/app/main.cpp b/app/main.cpp
index 55a7688..0bfdd52 100644
--- a/app/main.cpp
+++ b/app/main.cpp
@@ -96,16 +96,8 @@ int main(int argc, char *argv[])
hs->init(port, token.c_str());
// Set the event handler for Event_TapShortcut which will activate the surface for windowmanager
hs->set_event_handler(LibHomeScreen::Event_TapShortcut, [qwm, myname](json_object *object){
- json_object *appnameJ = nullptr;
- if(json_object_object_get_ex(object, "application_name", &appnameJ))
- {
- const char *appname = json_object_get_string(appnameJ);
- if(myname == appname)
- {
- qDebug("Surface %s got tapShortcut\n", appname);
- qwm->activateSurface(myname);
- }
- }
+ qDebug("Surface %s got tapShortcut\n", myname.toStdString().c_str());
+ qwm->activateSurface(myname);
});
#endif