From eb27fc7988d40ec7eba5424037751bd5fbe57493 Mon Sep 17 00:00:00 2001 From: IChooseYou Date: Sun, 15 Feb 2026 14:39:14 -0700 Subject: [PATCH] rename Close to Unload Project in File menu, remove icon --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index ad2a38e..b01e3c9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -366,7 +366,7 @@ void MainWindow::createMenus() { file->addAction(makeIcon(":/vsicons/save.svg"), "&Save", QKeySequence::Save, this, &MainWindow::saveFile); file->addAction(makeIcon(":/vsicons/save-as.svg"), "Save &As...", QKeySequence::SaveAs, this, &MainWindow::saveFileAs); file->addSeparator(); - file->addAction(makeIcon(":/vsicons/close.svg"), "&Close", QKeySequence(Qt::CTRL | Qt::Key_W), this, &MainWindow::closeFile); + file->addAction("&Unload Project", QKeySequence(Qt::CTRL | Qt::Key_W), this, &MainWindow::closeFile); file->addSeparator(); file->addAction(makeIcon(":/vsicons/export.svg"), "Export &C++ Header...", this, &MainWindow::exportCpp); file->addSeparator();