[latexila] Ctrl+PgUp/PgDown for tab switching



commit 76a9f598a56919e5b16e5486bbf74136fd2012c9
Author: Sébastien Wilmet <swilmet gnome org>
Date:   Sat Apr 18 13:53:18 2015 +0200

    Ctrl+PgUp/PgDown for tab switching
    
    It's the standard keyboard shortcut for tab switching in a GtkNotebook.
    But it is/was used by GtkTextView and GtkScrolledWindow:
    https://bugzilla.gnome.org/show_bug.cgi?id=705648
    
    So force the keyboard shortcut on the latexila side.

 src/main_window_documents.vala |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/main_window_documents.vala b/src/main_window_documents.vala
index 1c74492..9c062a7 100644
--- a/src/main_window_documents.vala
+++ b/src/main_window_documents.vala
@@ -1,7 +1,7 @@
 /*
  * This file is part of LaTeXila.
  *
- * Copyright © 2012 Sébastien Wilmet
+ * Copyright © 2012, 2015 Sébastien Wilmet
  *
  * LaTeXila is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -36,10 +36,10 @@ public class MainWindowDocuments
             N_("Close all open files"), on_close_all },
 
         { "DocumentsPrevious", "go-previous", N_("_Previous Document"),
-            "<Control><Alt>Page_Up", N_("Activate previous document"), on_previous },
+            "<Control>Page_Up", N_("Activate previous document"), on_previous },
 
         { "DocumentsNext", "go-next", N_("_Next Document"),
-            "<Control><Alt>Page_Down", N_("Activate next document"), on_next },
+            "<Control>Page_Down", N_("Activate next document"), on_next },
 
         { "DocumentsMoveToNewWindow", null, N_("_Move to New Window"), null,
             N_("Move the current document to a new window"), on_move_to_new_window }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]