diff --git a/capplets/keyboard/ChangeLog b/capplets/keyboard/ChangeLog index 9ac45d66a..c1435e621 100644 --- a/capplets/keyboard/ChangeLog +++ b/capplets/keyboard/ChangeLog @@ -1,3 +1,8 @@ +2008-10-24 Sergey Udaltsov + + * gnome-keyboard-properties-xkbot.c: Small fix - remember sorted list + of expanders (in properties) + 2008-10-19 Jens Granseuer * gnome-keyboard-properties-a11y.c: (setup_a11y_tabs): actually connect diff --git a/capplets/keyboard/gnome-keyboard-properties-xkbot.c b/capplets/keyboard/gnome-keyboard-properties-xkbot.c index 1daa67be5..38f29a86c 100644 --- a/capplets/keyboard/gnome-keyboard-properties-xkbot.c +++ b/capplets/keyboard/gnome-keyboard-properties-xkbot.c @@ -346,6 +346,8 @@ xkb_options_load_options (GladeXML * dialog) expanders_list = g_slist_sort (expanders_list, (GCompareFunc) xkb_options_expanders_compare); + g_object_set_data (G_OBJECT (dialog), EXPANDERS_PROP, + expanders_list); while (expanders_list) { expander = GTK_WIDGET (expanders_list->data); gtk_box_pack_start (GTK_BOX (opts_vbox), expander, FALSE,