Skip to content

Commit

Permalink
changed default keyboard shortcut to open codebox properties dialog t…
Browse files Browse the repository at this point in the history
…o Shift+Alt+U as the previous shortcut was causing problems to german layout keyboards (#2549)
  • Loading branch information
giuspen committed Aug 11, 2024
1 parent 4cd38ab commit c2ed0bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ct/ct_menu_actions.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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)});
Expand Down

0 comments on commit c2ed0bd

Please sign in to comment.