From 1aea5ab079239d6aed6ef00a7c371026f53f8941 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Thu, 12 May 2016 20:54:42 +0200 Subject: [PATCH] e_xkb: reconfig when we have set a new set of layouts When in the config dialog a new set of layouts is created, this set has to be told to the displayserver. Like at the startup of e, so calling e_xkb_reconfig(). fix T3072 --- src/modules/xkbswitch/e_mod_config.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/xkbswitch/e_mod_config.c b/src/modules/xkbswitch/e_mod_config.c index d0c22450f..d615aad80 100644 --- a/src/modules/xkbswitch/e_mod_config.c +++ b/src/modules/xkbswitch/e_mod_config.c @@ -295,6 +295,7 @@ _basic_apply(E_Config_Dialog *cfd EINA_UNUSED, E_Config_Dialog_Data *cfdata) e_config->xkb.used_options = eina_list_append(e_config->xkb.used_options, oc); } + e_xkb_reconfig(); e_config_save_queue(); return 1; }