From 23c2623bcfa2e5c41d413ccacadd32dcc0c9e451 Mon Sep 17 00:00:00 2001 From: "G.K.MacGregor" Date: Thu, 27 May 2021 21:57:02 +0100 Subject: [PATCH] Clarify that we export only the current subpage --- mainwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index ebfab6c..e691649 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -257,14 +257,14 @@ void MainWindow::createActions() setRecentFilesVisible(MainWindow::hasRecentFiles()); - QMenu *exportHashStringSubMenu = fileMenu->addMenu(tr("Export to online editor")); + QMenu *exportHashStringSubMenu = fileMenu->addMenu(tr("Export subpage to online editor")); QAction *exportZXNetAct = exportHashStringSubMenu->addAction(tr("Open in zxnet.co.uk")); - exportZXNetAct->setStatusTip("Export and open page in zxnet.co.uk online editor"); + exportZXNetAct->setStatusTip("Export and open this subpage in the zxnet.co.uk online editor"); connect(exportZXNetAct, &QAction::triggered, this, &MainWindow::exportZXNet); QAction *exportEditTFAct = exportHashStringSubMenu->addAction(tr("Open in edit.tf")); - exportEditTFAct->setStatusTip("Export and open page in edit.tf online editor"); + exportEditTFAct->setStatusTip("Export and open this subpage in the edit.tf online editor"); connect(exportEditTFAct, &QAction::triggered, this, &MainWindow::exportEditTF); fileMenu->addSeparator();