From fc288e2a63bd678068a7eea76cc3c08113ae0e52 Mon Sep 17 00:00:00 2001 From: Gavin MacGregor Date: Wed, 5 Mar 2025 18:50:05 +0000 Subject: [PATCH] Rename "show control codes" to "control codes" --- src/qteletextmaker/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qteletextmaker/mainwindow.cpp b/src/qteletextmaker/mainwindow.cpp index bf494e1..cebcf67 100644 --- a/src/qteletextmaker/mainwindow.cpp +++ b/src/qteletextmaker/mainwindow.cpp @@ -590,7 +590,7 @@ void MainWindow::createActions() gridAct->setStatusTip(tr("Toggle the text grid")); connect(gridAct, &QAction::toggled, m_textScene, &LevelOneScene::toggleGrid); - QAction *showControlCodesAct = viewMenu->addAction(tr("Show control codes")); + QAction *showControlCodesAct = viewMenu->addAction(tr("Control codes")); showControlCodesAct->setCheckable(true); showControlCodesAct->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_T)); showControlCodesAct->setStatusTip(tr("Toggle showing of control codes"));