Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Noel <vnoel@cox.net>2005-02-09 16:20:19 (GMT)
committer Vincent Noel <vnoel@src.gnome.org>2005-02-09 16:20:19 (GMT)
commit792e15101fa0a75343b241a692beff93f189cbd8 (patch)
treeab23832aead09487f44f2bc68dcb9d682ac88ab7
parentd58aed1bd1e82193bab4c9156198804d556dca82 (diff)
Set the "Previous" and "Next" toolbar buttons as important to make them
2005-02-09 Vincent Noel <vnoel@cox.net> * shell/ev-window.c: (set_action_properties): Set the "Previous" and "Next" toolbar buttons as important to make them stand out.
-rw-r--r--ChangeLog5
-rw-r--r--shell/ev-window.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a6f14b7..4676073 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-02-09 Vincent Noel <vnoel@cox.net>
+
+ * shell/ev-window.c: (set_action_properties): Set the "Previous"
+ and "Next" toolbar buttons as important to make them stand out.
+
2005-02-09 Marco Pesenti Gritti <marco@gnome.org>
* lib/ev-debug.c:
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 4f7bab4..23798bf 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -1651,8 +1651,10 @@ set_action_properties (GtkActionGroup *action_group)
action = gtk_action_group_get_action (action_group, "GoPreviousPage");
/*translators: this is the label for toolbar button*/
g_object_set (action, "short_label", _("Previous"), NULL);
+ g_object_set (action, "is-important", TRUE, NULL);
action = gtk_action_group_get_action (action_group, "GoNextPage");
/*translators: this is the label for toolbar button*/
+ g_object_set (action, "is-important", TRUE, NULL);
g_object_set (action, "short_label", _("Next"), NULL);
action = gtk_action_group_get_action (action_group, "ViewPageWidth");
/*translators: this is the label for toolbar button*/