2008-07-20 Carlos Garcia Campos <carlosgc@gnome.org>
* shell/ev-window.c: (find_bar_visibility_changed_cb):
Restart the job search when the find bar is opened for the second
time. Fixes bug #531956.
svn path=/trunk/; revision=3077
+2008-07-20 Carlos Garcia Campos <carlosgc@gnome.org>
+
+ * shell/ev-window.c: (find_bar_visibility_changed_cb):
+
+ Restart the job search when the find bar is opened for the second
+ time. Fixes bug #531956.
+
2008-07-20 Carlos Garcia Campos <carlosgc@gnome.org>
* libdocument/ev-document-factory.c: (get_mime_type_from_data),
if (ev_window->priv->document &&
EV_IS_DOCUMENT_FIND (ev_window->priv->document)) {
- ev_view_set_highlight_search (EV_VIEW(ev_window->priv->view), visible);
- ev_view_search_changed (EV_VIEW(ev_window->priv->view));
+ ev_view_set_highlight_search (EV_VIEW (ev_window->priv->view), visible);
+ ev_view_search_changed (EV_VIEW (ev_window->priv->view));
ev_window_update_actions (ev_window);
- if (!visible)
+ if (visible)
+ find_bar_search_changed_cb (find_bar, NULL, ev_window);
+ else
egg_find_bar_set_status_text (EGG_FIND_BAR (ev_window->priv->find_bar), NULL);
}
}