diff options
Diffstat (limited to 'shell/eggfindbar.c')
-rw-r--r-- | shell/eggfindbar.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/eggfindbar.c b/shell/eggfindbar.c index 438c5dc7..99e83921 100644 --- a/shell/eggfindbar.c +++ b/shell/eggfindbar.c @@ -573,7 +573,6 @@ egg_find_bar_set_search_string (EggFindBar *find_bar, g_object_thaw_notify (G_OBJECT (find_bar)); } - /** * egg_find_bar_get_search_string: * @@ -618,7 +617,7 @@ egg_find_bar_set_case_sensitive (EggFindBar *find_bar, if (priv->case_sensitive != case_sensitive) { - priv->case_sensitive = case_sensitive; + priv->case_sensitive = (case_sensitive != FALSE); gtk_toggle_tool_button_set_active (GTK_TOGGLE_TOOL_BUTTON (priv->case_button), priv->case_sensitive); |