[gtranslator: 1/3] Currently, the shorcut to show the shortcut window does not work.




commit 4fbed823b4c88ab02425a35b723c24888339467e
Author: Roshan-R <roshanr2001 gmail com>
Date:   Sun Apr 3 12:03:49 2022 +0530

    Currently, the shorcut to show the shortcut window
    does not work.
    
    This commit fixes it by adding a keybinding for showing
    the shortcut window in src/gtr-application.c
    
    Closes #123

 src/gtr-application.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/src/gtr-application.c b/src/gtr-application.c
index 86470895..f891a0c9 100644
--- a/src/gtr-application.c
+++ b/src/gtr-application.c
@@ -696,12 +696,13 @@ gtr_application_startup (GApplication *application)
   set_kb (application, "app.saveas", "<Ctrl><Shift>s");
   set_kb (application, "app.upload_file", "<Ctrl>b");
   set_kb (application, "app.preferences", "<Ctrl>p");
+  set_kb (application, "app.shortcuts", "<Ctrl><Shift>question");
   set_kb (application, "app.quit", "<Primary>q");
 
   set_kb (application, "app.undo", "<Ctrl>z");
   set_kb (application, "app.redo", "<Ctrl><Shift>z");
   set_kb (application, "app.clear_msgstr", "<Ctrl>k");
-
+  
   set_kb (application, "app.prev", "<Alt>Left");
   set_kb (application, "app.next", "<Alt>Right");
   set_kb (application, "app.prev_no", "<Alt>Page_Up");


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