From c2ed0bdf5d2411814128bdaf149b02540433abf7 Mon Sep 17 00:00:00 2001 From: Giuseppe Penone Date: Sun, 11 Aug 2024 22:41:38 +0100 Subject: [PATCH] changed default keyboard shortcut to open codebox properties dialog to Shift+Alt+U as the previous shortcut was causing problems to german layout keyboards (#2549) --- src/ct/ct_menu_actions.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ct/ct_menu_actions.cc b/src/ct/ct_menu_actions.cc index 4f9d807a3..cb20a3a60 100644 --- a/src/ct/ct_menu_actions.cc +++ b/src/ct/ct_menu_actions.cc @@ -197,7 +197,7 @@ void CtMenu::init_actions(CtActions* pActions) _actions.push_back(CtMenuAction{editor_cat, "table_export", "ct_table_save", _("_Table Export..."), None, _("Export Table as CSV File"), sigc::mem_fun(*pActions, &CtActions::table_export)}); - _actions.push_back(CtMenuAction{editor_cat, "codebox_change_properties", "ct_codebox_edit", _("Change CodeBox _Properties..."), KB_CONTROL+"backslash", + _actions.push_back(CtMenuAction{editor_cat, "codebox_change_properties", "ct_codebox_edit", _("Change CodeBox _Properties..."), KB_SHIFT+KB_ALT+"u", _("Edit the Properties of the CodeBox"), sigc::mem_fun(*pActions, &CtActions::codebox_change_properties)}); _actions.push_back(CtMenuAction{editor_cat, "codebox_load_from_file", "ct_from_txt", _("CodeBox _Load From Text File..."), None, _("Load the CodeBox Content From a Text File"), sigc::mem_fun(*pActions, &CtActions::codebox_load_from_file)});