From: Ji-hoon Lee Date: Fri, 25 Nov 2016 07:18:51 +0000 (+0900) Subject: Fixed 'if' condition for handling key events only when highlight ui enabled X-Git-Tag: accepted/tizen/common/20161125.095607^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F70%2F100170%2F1;p=platform%2Fcore%2Fuifw%2Flibscl-ui.git Fixed 'if' condition for handling key events only when highlight ui enabled Change-Id: I350e089212ffe531aa4bf0898612c1cce6673d37 --- diff --git a/scl/sclevents.cpp b/scl/sclevents.cpp index 12c8639..6936326 100644 --- a/scl/sclevents.cpp +++ b/scl/sclevents.cpp @@ -118,7 +118,7 @@ sclboolean CSCLEvents::process_key_event(const char *key) { CSCLContext *context = CSCLContext::get_instance(); - if (context && context->get_highlight_ui_enabled()) + if (context && !(context->get_highlight_ui_enabled())) return FALSE; const char *keyname = key;