summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2018-10-30 17:15:13 +0800
committerwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2018-10-30 17:15:55 +0800
commitd674cc98739096dc9ab91099e48ccf82f922c014 (patch)
tree6da3744a8f11d9abe5a3bb7c4ee6db897f99ce15
parent087d29529292db2e6b6e654254b6600d95a3a43a (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: Ie7574632e28d7bcf0c024a2c9633afe50a7d5d7e 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 b4c5be3..ee6e830 100644
--- a/app/main.cpp
+++ b/app/main.cpp
@@ -110,16 +110,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);
});
QFile version("/proc/version");