diff --git a/capplets/mouse/ChangeLog b/capplets/mouse/ChangeLog index 41641faf4..c812041a2 100644 --- a/capplets/mouse/ChangeLog +++ b/capplets/mouse/ChangeLog @@ -1,3 +1,10 @@ +2006-06-11 Darren Kenny + + 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 Fixes #330588 diff --git a/capplets/mouse/gnome-mouse-properties.c b/capplets/mouse/gnome-mouse-properties.c index 54e1ff644..73941490b 100644 --- a/capplets/mouse/gnome-mouse-properties.c +++ b/capplets/mouse/gnome-mouse-properties.c @@ -535,7 +535,7 @@ cursor_font_changed (GConfClient *client, /* If there's no value set, then don't select anything, and return */ if ( cursor_font == NULL ) { - gtk_tree_selection_unselect_all(selection); + gtk_tree_selection_unselect_all (selection); return; }