2006-06-11  Darren Kenny <darren.kenny@sun.com>

	Fixes #340003

	* gnome-mouse-properties.c (cursor_font_changed): if no cursor font
	set in GConf, just unselect and return.
This commit is contained in:
Darren Kenny 2006-06-11 10:50:42 +00:00 committed by Rodrigo Moya
parent 0b84184181
commit a75e369747
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2006-06-11 Darren Kenny <darren.kenny@sun.com>
Fixes #340003
* gnome-mouse-properties.c (cursor_font_changed): if no cursor font
set in GConf, just unselect and return.
2006-02-14 Anilkumar Bacheli <anilkumar.bacheli@wipro.com> 2006-02-14 Anilkumar Bacheli <anilkumar.bacheli@wipro.com>
Fixes #330588 Fixes #330588

View file

@ -535,7 +535,7 @@ cursor_font_changed (GConfClient *client,
/* If there's no value set, then don't select anything, and return */ /* If there's no value set, then don't select anything, and return */
if ( cursor_font == NULL ) { if ( cursor_font == NULL ) {
gtk_tree_selection_unselect_all(selection); gtk_tree_selection_unselect_all (selection);
return; return;
} }