From 792e15101fa0a75343b241a692beff93f189cbd8 Mon Sep 17 00:00:00 2001 From: Vincent Noel Date: Wed, 9 Feb 2005 16:20:19 +0000 Subject: [PATCH] Set the "Previous" and "Next" toolbar buttons as important to make them 2005-02-09 Vincent Noel * shell/ev-window.c: (set_action_properties): Set the "Previous" and "Next" toolbar buttons as important to make them stand out. --- ChangeLog | 5 +++++ shell/ev-window.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index a6f14b71..4676073e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-02-09 Vincent Noel + + * 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 * lib/ev-debug.c: diff --git a/shell/ev-window.c b/shell/ev-window.c index 4f7bab4a..23798bf9 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*/ -- 2.43.5