@@ -2469,7 +2469,7 @@ void MainWindow::createToolBar()
2469
2469
connect (loadFileAct, SIGNAL (triggered ()), this , SLOT (loadFile ()));
2470
2470
2471
2471
// 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 );
2473
2473
textAlignSc = new QShortcut (metaKey (' M' ), this , SLOT (beautifyCode ()));
2474
2474
updateAction (textAlignAct, textAlignSc, tr (" Align code to improve readability" ));
2475
2475
connect (textAlignAct, SIGNAL (triggered ()), this , SLOT (beautifyCode ()));
@@ -2608,7 +2608,7 @@ void MainWindow::createToolBar()
2608
2608
clearOutputOnRunAct->setChecked (piSettings->log_cues );
2609
2609
connect (clearOutputOnRunAct, SIGNAL (triggered ()), this , SLOT (clearOutputOnRunMenuChanged ()));
2610
2610
2611
- autoIndentOnRunAct = new QAction (tr (" Auto Indent Code on Run" ), this );
2611
+ autoIndentOnRunAct = new QAction (tr (" Auto Indent Code Buffer on Run" ), this );
2612
2612
autoIndentOnRunAct->setCheckable (true );
2613
2613
autoIndentOnRunAct->setChecked (piSettings->auto_indent_on_run );
2614
2614
connect (autoIndentOnRunAct, SIGNAL (triggered ()), this , SLOT (autoIndentOnRunMenuChanged ()));
0 commit comments