From: Marcel Hollerbach Date: Fri, 31 Jan 2020 13:39:38 +0000 (+0100) Subject: elm_config: fix wrong update code X-Git-Tag: submit/tizen/20200213.043550~98 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d116973ca9d17d8a459819ee948ef995e533e4db;p=platform%2Fupstream%2Fefl.git elm_config: fix wrong update code the version here was wrong, probebly a missmatch between hex. & dec and a off by one error. This is fixing that problem and does not just copy all keybindings. Reviewed-by: Mike Blumenkrantz Differential Revision: https://phab.enlightenment.org/D11261 --- diff --git a/src/lib/elementary/elm_config.c b/src/lib/elementary/elm_config.c index 03c1cc1..8d175b1 100644 --- a/src/lib/elementary/elm_config.c +++ b/src/lib/elementary/elm_config.c @@ -3141,13 +3141,14 @@ _config_update(void) _elm_config->win_no_border = EINA_FALSE; IFCFGEND - IFCFG(0x0022) + IFCFG(0x0016) _elm_key_bindings_copy_missing_bindings(_elm_config, tcfg); /* after this function call, the tcfg is partly invalidated, reload! */ _config_free(tcfg); tcfg = _config_system_load(); IFCFGEND + /** * Fix user config for current ELM_CONFIG_EPOCH here. **/