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.xml1
-rw-r--r--shell/ev-window.c2
3 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4b9142a..4345e53 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2008-04-12 Carlos Garcia Campos <carlosgc@gnome.org>
+ * data/evince-ui.xml:
+ * shell/ev-window.c:
+
+ Add Ctrl-Insert keybinding for copying text. Fixes bug #526523.
+
+2008-04-12 Carlos Garcia Campos <carlosgc@gnome.org>
+
* configure.ac:
* backend/ps/Makefile.am:
diff --git a/data/evince-ui.xml b/data/evince-ui.xml
index 93e4438..eb7ed40 100644
--- a/data/evince-ui.xml
+++ b/data/evince-ui.xml
@@ -110,6 +110,7 @@
<accelerator name="KpMinusAccel" action="KpMinus"/>
<accelerator name="CtrlKpPlusAccel" action="CtrlKpPlus"/>
<accelerator name="CtrlKpMinusAccel" action="CtrlKpMinus"/>
+ <accelerator name="CtrlInsertAccel" action="CtrlInsert" />
<toolbar name="FullscreenToolbar">
<toolitem name="GoPreviousPage" action="GoPreviousPage"/>
diff --git a/shell/ev-window.c b/shell/ev-window.c
index fe05cec..ffac5d7 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -4285,6 +4285,8 @@ static const GtkActionEntry entries[] = {
G_CALLBACK (ev_window_cmd_view_zoom_in) },
{ "CtrlKpMinus", GTK_STOCK_ZOOM_OUT, NULL, "<control>KP_Subtract", NULL,
G_CALLBACK (ev_window_cmd_view_zoom_out) },
+ { "CtrlInsert", GTK_STOCK_COPY, NULL, "<control>Insert", NULL,
+ G_CALLBACK (ev_window_cmd_edit_copy) },
};
/* Toggle items */