From fc19486f53307c3a4233553db6c60418e991beb1 Mon Sep 17 00:00:00 2001 From: "Frederik “Freso” S. Olesen" Date: Mon, 6 Aug 2018 15:15:01 +0200 Subject: Fix capitalisation of "Explorer" 1. Explorer is a specific program, so it should be treated as a proper noun, and thus capitalised. 2. Other menu items in the same menu are Title Cases, so it looks out of place that this item is not. --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index dc09ae4e..9a9e5b28 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -3561,7 +3561,7 @@ void MainWindow::on_modList_customContextMenuRequested(const QPoint &pos) menu->addAction(tr("Create Mod..."), this, SLOT(createModFromOverwrite())); menu->addAction(tr("Clear Overwrite..."), this, SLOT(clearOverwrite())); } - menu->addAction(tr("Open in explorer"), this, SLOT(openExplorer_clicked())); + menu->addAction(tr("Open in Explorer"), this, SLOT(openExplorer_clicked())); } else if (std::find(flags.begin(), flags.end(), ModInfo::FLAG_BACKUP) != flags.end()) { menu->addAction(tr("Restore Backup"), this, SLOT(restoreBackup_clicked())); menu->addAction(tr("Remove Backup..."), this, SLOT(removeMod_clicked())); -- cgit v1.3.1