[evince] toolbar: Move the find button to the left
- From: Carlos Garcia Campos <carlosgc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evince] toolbar: Move the find button to the left
- Date: Sat, 22 Feb 2014 09:06:17 +0000 (UTC)
commit 23172cb7756a4cd4d5a3fe27effa723fa9286687
Author: Carlos Garcia Campos <carlosgc gnome org>
Date: Sat Feb 22 10:02:57 2014 +0100
toolbar: Move the find button to the left
So that is grouped with the navigation actions, instead of the view
actions.
https://bugzilla.gnome.org/show_bug.cgi?id=723789
shell/ev-toolbar.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/shell/ev-toolbar.c b/shell/ev-toolbar.c
index 178f57d..f9f87e6 100644
--- a/shell/ev-toolbar.c
+++ b/shell/ev-toolbar.c
@@ -202,12 +202,6 @@ ev_toolbar_constructed (GObject *object)
gtk_container_add (GTK_CONTAINER (ev_toolbar), tool_item);
gtk_widget_show (tool_item);
- /* Separator */
- tool_item = GTK_WIDGET (gtk_tool_item_new ());
- gtk_tool_item_set_expand (GTK_TOOL_ITEM (tool_item), TRUE);
- gtk_container_add (GTK_CONTAINER (ev_toolbar), tool_item);
- gtk_widget_show (tool_item);
-
/* Find */
action = gtk_action_group_get_action (action_group, "EditFind");
button = ev_toolbar_create_toggle_button (ev_toolbar, action);
@@ -221,6 +215,12 @@ ev_toolbar_constructed (GObject *object)
gtk_container_add (GTK_CONTAINER (ev_toolbar), tool_item);
gtk_widget_show (tool_item);
+ /* Separator */
+ tool_item = GTK_WIDGET (gtk_tool_item_new ());
+ gtk_tool_item_set_expand (GTK_TOOL_ITEM (tool_item), TRUE);
+ gtk_container_add (GTK_CONTAINER (ev_toolbar), tool_item);
+ gtk_widget_show (tool_item);
+
/* Zoom selector */
action = gtk_action_group_get_action (action_group, "ViewZoom");
tool_item = gtk_action_create_tool_item (action);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]