summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEran Mizrahi <erasmux@gmail.com>2017-12-26 23:23:04 +0200
committerEran Mizrahi <erasmux@gmail.com>2017-12-27 02:41:42 +0200
commit9c82a1102e54b7fb350e18bd52cbf81083f42ca7 (patch)
tree423a34ff44def885cece035b82f5cc5250b49fe9
parente623c13400a3cc43e564c0e00b85a21aeefe84dd (diff)
Enable open in explorer option also for overwrite
-rw-r--r--src/mainwindow.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 8871075f..c29e4ca4 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -3100,6 +3100,7 @@ void MainWindow::on_modList_customContextMenuRequested(const QPoint &pos)
menu->addAction(tr("Sync to Mods..."), &m_OrganizerCore, SLOT(syncOverwrite()));
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()));
}
} else if (std::find(flags.begin(), flags.end(), ModInfo::FLAG_BACKUP) != flags.end()) {
menu->addAction(tr("Restore Backup"), this, SLOT(restoreBackup_clicked()));