Fix crash issue when IME is shown 47/243847/1
authorInHong Han <inhong1.han@samsung.com>
Tue, 10 Mar 2020 03:36:01 +0000 (12:36 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Thu, 10 Sep 2020 11:19:12 +0000 (20:19 +0900)
Change-Id: I88a3c4c293cc678742fb3dac28924f8a0829badf

src/sclcoreui-efl.cpp

index 1fc26e0..81d0ef1 100644 (file)
@@ -504,10 +504,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
@@ -529,6 +525,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);