Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--data/evince-ui.xml2
-rw-r--r--shell/ev-window.c3
3 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d9b0d91..5f6df4a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-06-17 Marco Pesenti Gritti <mpg@redhat.com>
+
+ * data/evince-ui.xml:
+ * shell/ev-window.c:
+
+ Add control-equal for zooming
+
2005-06-17 Theppitak Karoonboonyanan <thep@linux.thai.net>
* configure.ac: Added 'th' (Thai) to ALL_LINGUAS.
diff --git a/data/evince-ui.xml b/data/evince-ui.xml
index c64df65..be1cf0b 100644
--- a/data/evince-ui.xml
+++ b/data/evince-ui.xml
@@ -79,5 +79,5 @@
<accelerator name="FocusPageSelectorAccel" action="FocusPageSelector"/>
<accelerator name="PlusAccel" action="Plus"/>
<accelerator name="MinusAccel" action="Minus"/>
-
+ <accelerator name="CtrlEqualAccel" action="CtrlEqual"/>
</ui>
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 2020e9c..8234197 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -2575,6 +2575,9 @@ static const GtkActionEntry entries[] = {
{ "Plus", GTK_STOCK_ZOOM_IN, NULL, "plus",
N_("Enlarge the document"),
G_CALLBACK (ev_window_cmd_view_zoom_in) },
+ { "CtrlEqual", GTK_STOCK_ZOOM_IN, NULL, "<control>equal",
+ N_("Enlarge the document"),
+ G_CALLBACK (ev_window_cmd_view_zoom_in) },
{ "Minus", GTK_STOCK_ZOOM_OUT, NULL, "minus",
N_("Shrink the document"),
G_CALLBACK (ev_window_cmd_view_zoom_out) },