change to get font type API with reading vconf directly.
[platform/core/api/system-settings.git] / system-settings-util / src / system_settings_util.c
index 8f59288..d942157 100644 (file)
@@ -397,7 +397,9 @@ void __font_size_set()
        SETTING_TRACE_BEGIN;
        char buf[255] = { 0 };
        int font_size = __font_size_get();
-       char *font_name = _get_cur_font();
+       char *font_name = NULL;
+
+       font_name = vconf_get_str(VCONFKEY_SETAPPL_ACCESSIBILITY_FONT_NAME);
 
        snprintf(buf, sizeof(buf), "font_name: %s, font_size: %d", font_name, font_size);
        _efl_config_set(buf);