Modified to apply IME boosting only in on-demand launch mode 98/304798/5
authorInhong Han <inhong1.han@samsung.com>
Wed, 24 Jan 2024 01:06:58 +0000 (10:06 +0900)
committerInhong Han <inhong1.han@samsung.com>
Thu, 18 Apr 2024 07:15:41 +0000 (16:15 +0900)
Change-Id: Ida32bd0a88881139fa8996dc2b95a86b9409d1a3

ism/extras/efl_panel/isf_panel_efl.cpp

index 8eb3de1..75cdd10 100644 (file)
@@ -6280,13 +6280,13 @@ static bool app_control_launch (const char *app_id)
         return false;
     }
 
-    if (_TV) {
+    if (_TV && _launch_ise_on_request) {
         ret = app_control_add_extra_data(app_control, "__K_EX_FORCE_BOOST", "enable");
         if (ret != APP_CONTROL_ERROR_NONE) {
             LOGW ("app_control_add_extra_data(BOOST) returned %08x", ret);
         }
 
-        if (_launch_ise_on_request && _show_splash_screen) {
+        if (_show_splash_screen) {
             ret = app_control_add_extra_data(app_control, "__K_SPLASH_SCREEN", "LA_UI_TRANSPARENT");
             if (ret != APP_CONTROL_ERROR_NONE) {
                 LOGW ("app_control_add_extra_data(SPLASH_SCREEN) returned %08x", ret);