From c1a680706ae1ebe64963149c7973e066b4477cfe Mon Sep 17 00:00:00 2001
From: Marko Mecina <marko.mecina@univie.ac.at>
Date: Thu, 19 Jan 2023 16:22:44 +0100
Subject: [PATCH] change hotkey for code comment

---
 Ccs/editor.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Ccs/editor.py b/Ccs/editor.py
index 501a479..c89e972 100644
--- a/Ccs/editor.py
+++ b/Ccs/editor.py
@@ -657,7 +657,7 @@ class CcsEditor(Gtk.Window):
 
         action = Gtk.Action(name="EditComment", label="Comment Lines", tooltip=None)
         action.connect("activate", self._on_comment_lines)
-        action_group.add_action_with_accel(action, "<control>B")
+        action_group.add_action_with_accel(action, "<control>T")
 
         action = Gtk.Action(name="EditPreferences", label="Preferences", tooltip=None, stock_id=Gtk.STOCK_PREFERENCES)
         action.connect("activate", cfl.start_config_editor)
-- 
GitLab