From b6b8e1cdc1014a4ffb5caeb241c7edf354056d66 Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Thu, 25 Sep 2014 09:54:17 +0900 Subject: [PATCH] Fix bug H/W keyboard ongoing notification displays so big [model] Kiran [binary_type] PDA [customer] OPEN [issue#] NABI-827 [problem] H/W keyboard ongoing notification displays so big after changing display language [cause] elementary scale is changed after changing display language [solution] set environment variable not to change scale [team] Input Framework [request] N/A [horizontal_expansion] N/A Change-Id: I16f99563de34094bd372288fe382a344a414764f --- ism/extras/efl_panel/isf_panel_efl.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ism/extras/efl_panel/isf_panel_efl.cpp b/ism/extras/efl_panel/isf_panel_efl.cpp index 1e0d7a81..626b1175 100644 --- a/ism/extras/efl_panel/isf_panel_efl.cpp +++ b/ism/extras/efl_panel/isf_panel_efl.cpp @@ -6503,6 +6503,9 @@ int main (int argc, char *argv []) if (_screen_width) { _app_scale = _screen_width / 720.0; elm_config_scale_set (_app_scale); + char buf[16] = {0}; + snprintf(buf, sizeof(buf), "%4.3f", _app_scale); + setenv ("ELM_SCALE", buf, 1); } signal (SIGQUIT, signalhandler); -- 2.34.1