aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2018-10-30 17:09:52 +0800
committerwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2018-10-30 17:10:30 +0800
commitf2d1e14b5ecef1f464e3d38860ab474ce22fb2f0 (patch)
tree260dc00cc2d1c56658c7052557b7373f704b77d7
parent04990a8e75aeaba041d8bf92ae62fddbf8d0e362 (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: I0c02ae85a718dadf228033e5861c6abf62788a82 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 ac5fb24..844913f 100644
--- a/app/main.cpp
+++ b/app/main.cpp
@@ -98,16 +98,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(QString::compare(myname, appname, Qt::CaseInsensitive) == 0)
- {
- qDebug("Surface %s got tapShortcut\n", appname);
- qwm->activateSurface(myname);
- }
- }
+ qDebug("Surface %s got tapShortcut\n", myname.toStdString().c_str());
+ qwm->activateSurface(myname);
});
#endif
engine.load(QUrl(QStringLiteral("qrc:/Mixer.qml")));