[pdfmod] Add shift-ctrl-z keybinding to Redo
- From: Gabriel Burt <gburt src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [pdfmod] Add shift-ctrl-z keybinding to Redo
- Date: Fri, 18 Sep 2009 19:24:49 +0000 (UTC)
commit 888eeed3d0407502e8d0fc2588956ef267b8ca7e
Author: Gabriel Burt <gabriel burt gmail com>
Date: Fri Sep 18 12:15:44 2009 -0700
Add shift-ctrl-z keybinding to Redo
src/PdfMod/Gui/Actions.cs | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/src/PdfMod/Gui/Actions.cs b/src/PdfMod/Gui/Actions.cs
index 939339a..6a030d3 100644
--- a/src/PdfMod/Gui/Actions.cs
+++ b/src/PdfMod/Gui/Actions.cs
@@ -138,6 +138,9 @@ namespace PdfMod.Gui
item = ActionManager.UIManager.GetWidget ("/MainMenu/FileMenu/Close");
item.AddAccelerator ("activate", ActionManager.UIManager.AccelGroup, (uint) Gdk.Key.q, Gdk.ModifierType.ControlMask, Gtk.AccelFlags.Visible);
+ item = ActionManager.UIManager.GetWidget ("/MainMenu/EditMenu/Redo");
+ item.AddAccelerator ("activate", ActionManager.UIManager.AccelGroup, (uint) Gdk.Key.z, Gdk.ModifierType.ControlMask | Gdk.ModifierType.ShiftMask, Gtk.AccelFlags.Visible);
+
// Set up recent documents menu
MenuItem recent_item = ActionManager.UIManager.GetWidget ("/MainMenu/FileMenu/RecentMenu") as MenuItem;
var recent_chooser_item = new RecentChooserMenu (RecentManager.Default) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]