summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoungbok Shin <youngb.shin@samsung.com>2015-03-19 18:04:58 +0900
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2015-03-19 18:04:59 +0900
commit695a0e59cb525350e9d295e6d93c325dddc9e8a1 (patch)
tree2f43c4b719cd7d036c3580003d163cbfcf1f9ca8
parent1334e0d3a40e1a42c0cf65f6e53bdcecf5226915 (diff)
downloadelementary-695a0e59cb525350e9d295e6d93c325dddc9e8a1.tar.gz
config: Reinitialize font config using evas_font_reinit() API.
Summary: Call evas_font_reinit() API before applying font overlays when config is fully reloaded. Application could modify or add font config "*.conf" files. And It should affects all of other running EFL application. So, put evas_font_reinit() API to be called when x win property is changed. @feature Reviewers: cedric, raster, tasn, woohyun Differential Revision: https://phab.enlightenment.org/D2113
-rw-r--r--src/lib/elm_config.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/elm_config.c b/src/lib/elm_config.c
index 46b9f7ac4..43a446608 100644
--- a/src/lib/elm_config.c
+++ b/src/lib/elm_config.c
@@ -218,6 +218,7 @@ _prop_config_get(void)
_env_get();
_config_apply();
_config_sub_apply();
+ evas_font_reinit();
_elm_config_font_overlay_apply();
_elm_config_color_overlay_apply();
_elm_rescale();