diff options
author | Monsta <[email protected]> | 2014-12-24 13:47:44 +0300 |
---|---|---|
committer | Monsta <[email protected]> | 2014-12-24 13:47:44 +0300 |
commit | e264b67abd96f42fa77347e44a00afb174720619 (patch) | |
tree | f6018c68ecfb3f60f8f74e2c498f4ee0b57c2319 /capplets/keyboard/mate-keyboard-properties-a11y.c | |
parent | 6e206e57b0be2d878afcf0ae213206c16a44161e (diff) | |
download | mate-control-center-e264b67abd96f42fa77347e44a00afb174720619.tar.bz2 mate-control-center-e264b67abd96f42fa77347e44a00afb174720619.tar.xz |
set update_policy in the code for GTK+2 build
Diffstat (limited to 'capplets/keyboard/mate-keyboard-properties-a11y.c')
-rw-r--r-- | capplets/keyboard/mate-keyboard-properties-a11y.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/capplets/keyboard/mate-keyboard-properties-a11y.c b/capplets/keyboard/mate-keyboard-properties-a11y.c index bd2d13e2..b51ade67 100644 --- a/capplets/keyboard/mate-keyboard-properties-a11y.c +++ b/capplets/keyboard/mate-keyboard-properties-a11y.c @@ -319,4 +319,19 @@ setup_a11y_tabs (GtkBuilder *dialog) gtk_range_get_adjustment (GTK_RANGE (WID ("mousekeys_init_delay_slide"))), "value", G_SETTINGS_BIND_DEFAULT); + +#if !GTK_CHECK_VERSION (3, 0, 0) + const char *range_names[] = { + "slowkeys_delay_slide", + "bouncekeys_delay_slide", + "mousekeys_accel_time_slide", + "mousekeys_max_speed_slide", + "mousekeys_init_delay_slide" + }; + + int i; + for (i = 0; i < 5; ++i) { + gtk_range_set_update_policy (GTK_RANGE (WID (range_names[i])), GTK_UPDATE_DISCONTINUOUS); + } +#endif } |