]> Pileus Git - ~andy/gtk/commitdiff
gdk: Update gdk_settings_map for blink timeout to work
authorBastien Nocera <hadess@hadess.net>
Mon, 15 Nov 2010 17:02:40 +0000 (17:02 +0000)
committerTristan Van Berkom <tristan.van.berkom@gmail.com>
Tue, 16 Nov 2010 07:20:48 +0000 (16:20 +0900)
gdk_settings_map needs to be updated when gdk_settings_names is changed,
and it's easier to add the setting at the end, so we don't need to
recalculate everything.

Really fixing:
https://bugzilla.gnome.org/show_bug.cgi?id=634697

gdk/x11/gdksettings.c

index 1db9ec76a13059bcfcb9e9a2e0119ca51e13aded..e1c2c56ca888d72af6c5df13c25b585afbbf231f 100644 (file)
@@ -51,7 +51,6 @@ static const char gdk_settings_names[] =
   "Gtk/ButtonImages\0"        "gtk-button-images\0"
   "Gtk/MenuImages\0"          "gtk-menu-images\0"
   "Gtk/MenuBarAccel\0"        "gtk-menu-bar-accel\0"
-  "Gtk/CursorBlinkTimeout\0"  "gtk-cursor-blink-timeout\0"
   "Gtk/CursorThemeName\0"     "gtk-cursor-theme-name\0"
   "Gtk/CursorThemeSize\0"     "gtk-cursor-theme-size\0"
   "Gtk/ShowInputMethodMenu\0" "gtk-show-input-method-menu\0"
@@ -74,7 +73,8 @@ static const char gdk_settings_names[] =
   "Fontconfig/Timestamp\0"    "gtk-fontconfig-timestamp\0"
   "Net/SoundThemeName\0"      "gtk-sound-theme-name\0"
   "Net/EnableInputFeedbackSounds\0" "gtk-enable-input-feedback-sounds\0"
-  "Net/EnableEventSounds\0"  "gtk-enable-event-sounds\0";
+  "Net/EnableEventSounds\0"  "gtk-enable-event-sounds\0"
+  "Gtk/CursorBlinkTimeout\0"  "gtk-cursor-blink-timeout\0";
 
 
 static const struct
@@ -125,5 +125,6 @@ static const struct
   { 1487, 1508 },
   { 1533, 1552 },
   { 1573, 1603 },
-  { 1636, 1658 }
+  { 1636, 1658 },
+  { 1682, 1705 },
 };