From: InHong Han Date: Tue, 10 Mar 2020 03:36:01 +0000 (+0900) Subject: Fix crash issue when IME is shown X-Git-Tag: submit/tizen/20200310.035319~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1a2e2b8601661e597c310f7d4de70f2f054d68aa;p=platform%2Fcore%2Fuifw%2Flibscl-core.git Fix crash issue when IME is shown Change-Id: I88a3c4c293cc678742fb3dac28924f8a0829badf --- diff --git a/src/sclcoreui-efl.cpp b/src/sclcoreui-efl.cpp index 4b7d97b..2bfe139 100644 --- a/src/sclcoreui-efl.cpp +++ b/src/sclcoreui-efl.cpp @@ -497,10 +497,6 @@ sclboolean CSCLCoreUIEFL::create_main_window() vconf_notify_key_changed(VCONFKEY_SETAPPL_ACCESSIBILITY_TTS, accessibility_changed_cb, NULL); - /* Should we call these callback functions here? */ - language_changed_cb(NULL, NULL); - accessibility_changed_cb(NULL, NULL); - evas_object_smart_callback_add(main_window, "wm,rotation,changed", win_rotation_changed_cb, NULL); evas_object_show(main_window); #else @@ -522,6 +518,10 @@ int CSCLCoreUIEFL::create(void *data) } } + /* Should we call these callback functions here? */ + language_changed_cb(NULL, NULL); + accessibility_changed_cb(NULL, NULL); + signal(SIGQUIT, signal_handler); signal(SIGTERM, signal_handler); signal(SIGINT, signal_handler);