Skip to content

Commit

Permalink
User-friendly texts for split menu-items (#1158)
Browse files Browse the repository at this point in the history
Closes #1157
  • Loading branch information
tsujan authored Jul 25, 2024
1 parent 878001f commit 143cf00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@

#define CLEAR_TERMINAL "Clear Active Terminal"

#define SPLIT_HORIZONTAL "Split Terminal Horizontally"
#define SPLIT_VERTICAL "Split Terminal Vertically"
#define SPLIT_HORIZONTAL "Split View Top-Bottom"
#define SPLIT_VERTICAL "Split View Left-Right"

#define SUB_COLLAPSE "Collapse Subterminal"
#define SUB_LEFT "Left Subterminal"
Expand Down
4 changes: 2 additions & 2 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -291,10 +291,10 @@ void MainWindow::setup_ActionsMenu_Actions()

menu_Actions->addSeparator();

setup_Action(SPLIT_HORIZONTAL, new QAction(tr("Split Terminal &Horizontally"), settingOwner),
setup_Action(SPLIT_HORIZONTAL, new QAction(tr("Split &View Top-Bottom"), settingOwner),
nullptr, consoleTabulator, SLOT(splitHorizontally()), menu_Actions);

setup_Action(SPLIT_VERTICAL, new QAction(tr("Split Terminal &Vertically"), settingOwner),
setup_Action(SPLIT_VERTICAL, new QAction(tr("Split Vie&w Left-Right"), settingOwner),
nullptr, consoleTabulator, SLOT(splitVertically()), menu_Actions);

data.setValue(checkSubterminals);
Expand Down

0 comments on commit 143cf00

Please sign in to comment.