Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-stock-icons.c1
-rw-r--r--shell/ev-stock-icons.h1
-rw-r--r--shell/ev-window.c2
3 files changed, 3 insertions, 1 deletions
diff --git a/shell/ev-stock-icons.c b/shell/ev-stock-icons.c
index c318ded..801db9a 100644
--- a/shell/ev-stock-icons.c
+++ b/shell/ev-stock-icons.c
@@ -34,6 +34,7 @@ typedef struct {
/* Evince stock icons */
static const EvStockIcon stock_icons [] = {
+ { EV_STOCK_ZOOM, "zoom" },
{ EV_STOCK_ZOOM_PAGE, "zoom-fit-page" },
{ EV_STOCK_ZOOM_WIDTH, "zoom-fit-width" },
{ EV_STOCK_VIEW_DUAL, "view-page-facing" },
diff --git a/shell/ev-stock-icons.h b/shell/ev-stock-icons.h
index d461a4a..b3455de 100644
--- a/shell/ev-stock-icons.h
+++ b/shell/ev-stock-icons.h
@@ -29,6 +29,7 @@
G_BEGIN_DECLS
/* Evince stock icons */
+#define EV_STOCK_ZOOM "zoom"
#define EV_STOCK_ZOOM_PAGE "zoom-fit-page"
#define EV_STOCK_ZOOM_WIDTH "zoom-fit-width"
#define EV_STOCK_VIEW_DUAL "view-page-facing"
diff --git a/shell/ev-window.c b/shell/ev-window.c
index d48e4c0..7f3a520 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -4476,7 +4476,7 @@ register_custom_actions (EvWindow *window, GtkActionGroup *group)
action = g_object_new (EPHY_TYPE_ZOOM_ACTION,
"name", ZOOM_CONTROL_ACTION,
"label", _("Zoom"),
- "stock_id", GTK_STOCK_ZOOM_IN,
+ "stock_id", EV_STOCK_ZOOM,
"tooltip", _("Adjust the zoom level"),
"zoom", 1.0,
NULL);