send xkb update event any time e_xkb_update() is called with a real value

SVN revision: 77728
This commit is contained in:
Mike Blumenkrantz 2012-10-10 09:06:21 +00:00
parent 5d376283c9
commit e32b918e43
1 changed files with 1 additions and 1 deletions

View File

@ -43,6 +43,7 @@ e_xkb_update(int cur_group)
{ {
_e_xkb_cur_group = cur_group; _e_xkb_cur_group = cur_group;
ecore_x_xkb_select_group(cur_group); ecore_x_xkb_select_group(cur_group);
_e_xkb_update_event(cur_group);
return; return;
} }
/* We put an empty -option here in order to override all previously /* We put an empty -option here in order to override all previously
@ -183,7 +184,6 @@ e_xkb_layout_set(const char *name)
eina_stringshare_replace(&e_config->xkb.cur_layout, cl->name); eina_stringshare_replace(&e_config->xkb.cur_layout, cl->name);
INF("Setting keyboard layout: %s", name); INF("Setting keyboard layout: %s", name);
e_xkb_update(cur_group); e_xkb_update(cur_group);
_e_xkb_update_event(cur_group);
break; break;
} }
} }