add some bounds checking.
2002-06-10 Jody Goldberg <jody@gnome.org> * gnome-settings-accessibility-keyboard.c (set_server_from_gconf) : add some bounds checking.
This commit is contained in:
parent
713c082241
commit
7eaed7842e
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2002-06-10 Jody Goldberg <jody@gnome.org>
|
||||||
|
|
||||||
|
* gnome-settings-accessibility-keyboard.c (set_server_from_gconf) :
|
||||||
|
add some bounds checking.
|
||||||
|
|
||||||
2002-06-06 Kjartan Maraas <kmaraas@gnome.org>
|
2002-06-06 Kjartan Maraas <kmaraas@gnome.org>
|
||||||
|
|
||||||
* gnome-settings-keybindings.c: Make the last string consistent
|
* gnome-settings-keybindings.c: Make the last string consistent
|
||||||
|
|
|
@ -219,6 +219,9 @@ set_server_from_gconf (GConfEntry *ignored)
|
||||||
desc->ctrls->ax_options, XkbAX_SKRejectFBMask);
|
desc->ctrls->ax_options, XkbAX_SKRejectFBMask);
|
||||||
desc->ctrls->slow_keys_delay = get_int (client,
|
desc->ctrls->slow_keys_delay = get_int (client,
|
||||||
CONFIG_ROOT "/slowkeys_delay");
|
CONFIG_ROOT "/slowkeys_delay");
|
||||||
|
/* anything larger than 500 seems to loose all keyboard input */
|
||||||
|
if (desc->ctrls->slow_keys_delay > 500)
|
||||||
|
desc->ctrls->slow_keys_delay = 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* sticky keys */
|
/* sticky keys */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue