Skip to content

Commit

Permalink
default keyboard shortcut for increase/decrease table column changed …
Browse files Browse the repository at this point in the history
…to Ctrl+Alt+> Ctrl+Alt+< as Ctrl+) not working on windows (#2336)
  • Loading branch information
giuspen committed Aug 23, 2023
1 parent 565b4c9 commit 76a7b44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ct/ct_menu_actions.cc
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,10 @@ void CtMenu::init_actions(CtActions* pActions)
_actions.push_back(CtMenuAction{editor_cat, "table_column_right", "ct_go-forward", _("Move Column _Right"), KB_CONTROL+"braceright",
_("Move the Selected Column Right"), sigc::mem_fun(*pActions, &CtActions::table_column_right)});
_actions.push_back(CtMenuAction{editor_cat, "table_column_increase_width", "ct_go-forward",
_("Increase Column Width"), KB_CONTROL+"parenright",
_("Increase Column Width"), KB_CONTROL+KB_ALT+"greater",
_("Increase the Width of the Column"), sigc::mem_fun(*pActions, &CtActions::table_column_increase_width)});
_actions.push_back(CtMenuAction{editor_cat, "table_column_decrease_width", "ct_go-back",
_("Decrease Column Width"), KB_CONTROL+"parenleft",
_("Decrease Column Width"), KB_CONTROL+KB_ALT+"less",
_("Decrease the Width of the Column"), sigc::mem_fun(*pActions, &CtActions::table_column_decrease_width)});
_actions.push_back(CtMenuAction{editor_cat, "table_row_add", "ct_add", _("_Add Row"), KB_CONTROL+"comma",
_("Add a Table Row"), sigc::mem_fun(*pActions, &CtActions::table_row_add)});
Expand Down

0 comments on commit 76a7b44

Please sign in to comment.