From 502e752b0af4e7a6800a7504ddbefbeef99778e4 Mon Sep 17 00:00:00 2001 From: AL <26797547+Al12rs@users.noreply.github.com> Date: Thu, 2 Apr 2020 14:29:40 +0200 Subject: Fix inconsistent Explore menu option naming. Used Visual Studio standard. --- src/downloadlistwidget.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/downloadlistwidget.cpp') diff --git a/src/downloadlistwidget.cpp b/src/downloadlistwidget.cpp index 5ca6cb51..2fddd16f 100644 --- a/src/downloadlistwidget.cpp +++ b/src/downloadlistwidget.cpp @@ -221,7 +221,7 @@ void DownloadListWidget::onCustomContextMenu(const QPoint &point) else menu.addAction(tr("Visit on Nexus"), this, SLOT(issueVisitOnNexus())); menu.addAction(tr("Open File"), this, SLOT(issueOpenFile())); - menu.addAction(tr("Show in Folder"), this, SLOT(issueOpenInDownloadsFolder())); + menu.addAction(tr("Reveal in Explorer"), this, SLOT(issueOpenInDownloadsFolder())); menu.addSeparator(); @@ -233,12 +233,12 @@ void DownloadListWidget::onCustomContextMenu(const QPoint &point) } else if (state == DownloadManager::STATE_DOWNLOADING) { menu.addAction(tr("Cancel"), this, SLOT(issueCancel())); menu.addAction(tr("Pause"), this, SLOT(issuePause())); - menu.addAction(tr("Show in Folder"), this, SLOT(issueOpenInDownloadsFolder())); + menu.addAction(tr("Reveal in Explorer"), this, SLOT(issueOpenInDownloadsFolder())); } else if ((state == DownloadManager::STATE_PAUSED) || (state == DownloadManager::STATE_ERROR) || (state == DownloadManager::STATE_PAUSING)) { menu.addAction(tr("Delete"), this, SLOT(issueDelete())); menu.addAction(tr("Resume"), this, SLOT(issueResume())); - menu.addAction(tr("Show in Folder"), this, SLOT(issueOpenInDownloadsFolder())); + menu.addAction(tr("Reveal in Explorer"), this, SLOT(issueOpenInDownloadsFolder())); } menu.addSeparator(); -- cgit v1.3.1