]> www.fi.muni.cz Git - evince.git/commitdiff
Set the "Previous" and "Next" toolbar buttons as important to make them
authorVincent Noel <vnoel@cox.net>
Wed, 9 Feb 2005 16:20:19 +0000 (16:20 +0000)
committerVincent Noel <vnoel@src.gnome.org>
Wed, 9 Feb 2005 16:20:19 +0000 (16:20 +0000)
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.

ChangeLog
shell/ev-window.c

index a6f14b71adae951734e56f3c960fb1383ec46b2a..4676073eb1c52130745abf4a4aa9ad7dc29a3937 100644 (file)
--- 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:
index 4f7bab4a76f6e4142930ca002a9d004492573faa..23798bf9730da7605c5995b29966a017e915db35 100644 (file)
@@ -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*/