gnome-settings-daemon r554 - in branches/gnome-2-24: . plugins/keyboard
- From: matthiasc svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-settings-daemon r554 - in branches/gnome-2-24: . plugins/keyboard
- Date: Sun, 12 Oct 2008 20:18:11 +0000 (UTC)
Author: matthiasc
Date: Sun Oct 12 20:18:11 2008
New Revision: 554
URL: http://svn.gnome.org/viewvc/gnome-settings-daemon?rev=554&view=rev
Log:
2008-10-06 Matthias Clasen <mclasen redhat com>
Bug 555873 â fix gdm keyboard layout handling even more
* plugins/keyboard/gsd-keyboard-xkb.c (apply_xkb_settings):
Try harder to handle initial-login situations correctly, while
not overwriting any user configuration.
Modified:
branches/gnome-2-24/ChangeLog
branches/gnome-2-24/plugins/keyboard/gsd-keyboard-xkb.c
Modified: branches/gnome-2-24/plugins/keyboard/gsd-keyboard-xkb.c
==============================================================================
--- branches/gnome-2-24/plugins/keyboard/gsd-keyboard-xkb.c (original)
+++ branches/gnome-2-24/plugins/keyboard/gsd-keyboard-xkb.c Sun Oct 12 20:18:11 2008
@@ -143,12 +143,38 @@
GConfClient *conf_client;
GkbdKeyboardConfig current_sys_kbd_config;
int group_to_activate = -1;
+ const char *gdm_layout;
if (!inited_ok)
return;
conf_client = gconf_client_get_default ();
+ /* With GDM the user can already set a layout from the login
+ * screen. Try to keep that setting.
+ * We clear gdm_keyboard_layout early, so we don't risk
+ * recursion from gconf notification.
+ */
+ gdm_layout = gdm_keyboard_layout;
+ gdm_keyboard_layout = NULL;
+ if (gdm_layout != NULL) {
+ GSList *layouts;
+ layouts = gconf_client_get_list (conf_client,
+ GKBD_KEYBOARD_CONFIG_KEY_LAYOUTS,
+ GCONF_VALUE_STRING,
+ NULL);
+ if (layouts == NULL) {
+ layouts = g_slist_append (layouts, g_strdup (gdm_layout));
+ gconf_client_set_list (conf_client,
+ GKBD_KEYBOARD_CONFIG_KEY_LAYOUTS,
+ GCONF_VALUE_STRING,
+ layouts,
+ NULL);
+ }
+ g_slist_foreach (layouts, (GFunc)g_free, NULL);
+ g_slist_free (layouts);
+ }
+
gkbd_keyboard_config_init (¤t_sys_kbd_config,
conf_client,
xkl_engine);
@@ -159,29 +185,20 @@
gkbd_keyboard_config_load_from_x_current (¤t_sys_kbd_config,
NULL);
- /* With GDM the user can already set a layout from the login
- * screen. Try to keep that setting */
- if (gdm_keyboard_layout != NULL) {
- if (current_kbd_config.layouts_variants == NULL) {
- current_kbd_config.layouts_variants = g_slist_append (NULL, (char *) gdm_keyboard_layout);
- gconf_client_set_list (conf_client,
- GKBD_KEYBOARD_CONFIG_KEY_LAYOUTS,
- GCONF_VALUE_STRING,
- current_kbd_config.layouts_variants,
- NULL);
- } else {
- GSList *l;
- int i;
- size_t len = strlen (gdm_keyboard_layout);
- for (i = 0, l = current_kbd_config.layouts_variants; l; i++, l = l->next) {
- char *lv = l->data;
- if (strncmp (lv, gdm_keyboard_layout, len) == 0 && (lv[len] == '\0' || lv[len] == '\t')) {
- group_to_activate = i;
- break;
- }
- }
+ if (gdm_layout != NULL) {
+ /* If there are multiple layouts,
+ * try to find the one closest to the gdm layout
+ */
+ GSList *l;
+ int i;
+ size_t len = strlen (gdm_layout);
+ for (i = 0, l = current_kbd_config.layouts_variants; l; i++, l = l->next) {
+ char *lv = l->data;
+ if (strncmp (lv, gdm_layout, len) == 0 && (lv[len] == '\0' || lv[len] == '\t')) {
+ group_to_activate = i;
+ break;
+ }
}
- gdm_keyboard_layout = NULL;
}
/* Activate - only if different! */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]