Skip to content

Commit d8d9dec

Browse files
committed
GUI - unify menu names related to code indentation
1 parent 5279574 commit d8d9dec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/gui/qt/mainwindow.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2469,7 +2469,7 @@ void MainWindow::createToolBar()
24692469
connect(loadFileAct, SIGNAL(triggered()), this, SLOT(loadFile()));
24702470

24712471
// Align
2472-
textAlignAct = new QAction(QIcon(":/images/align.png"), tr("Align Code"), this);
2472+
textAlignAct = new QAction(QIcon(":/images/align.png"), tr("Indent Code Buffer"), this);
24732473
textAlignSc = new QShortcut(metaKey('M'), this, SLOT(beautifyCode()));
24742474
updateAction(textAlignAct, textAlignSc, tr("Align code to improve readability"));
24752475
connect(textAlignAct, SIGNAL(triggered()), this, SLOT(beautifyCode()));
@@ -2608,7 +2608,7 @@ void MainWindow::createToolBar()
26082608
clearOutputOnRunAct->setChecked(piSettings->log_cues);
26092609
connect(clearOutputOnRunAct, SIGNAL(triggered()), this, SLOT(clearOutputOnRunMenuChanged()));
26102610

2611-
autoIndentOnRunAct = new QAction(tr("Auto Indent Code on Run"), this);
2611+
autoIndentOnRunAct = new QAction(tr("Auto Indent Code Buffer on Run"), this);
26122612
autoIndentOnRunAct->setCheckable(true);
26132613
autoIndentOnRunAct->setChecked(piSettings->auto_indent_on_run);
26142614
connect(autoIndentOnRunAct, SIGNAL(triggered()), this, SLOT(autoIndentOnRunMenuChanged()));

0 commit comments

Comments
 (0)