summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAl12rs <gabriel.cortesi@outlook.com>2018-03-05 15:16:55 +0100
committerAl12rs <gabriel.cortesi@outlook.com>2018-03-07 14:39:25 +0100
commit513c0629323c066a7b1d5df5ce81f3b9beac85bd (patch)
treeba5cd3c322582929237a7bb404500af0833cc32b
parent7cf0c1a29b463885e37a49691daffb98afdf58db (diff)
Inverted position of reinstall and remove mod, as per user request.
-rw-r--r--src/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index eb612b6b..ddd7ef92 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -3352,8 +3352,8 @@ void MainWindow::on_modList_customContextMenuRequested(const QPoint &pos)
menu->addSeparator();
menu->addAction(tr("Rename Mod..."), this, SLOT(renameMod_clicked()));
- menu->addAction(tr("Remove Mod..."), this, SLOT(removeMod_clicked()));
menu->addAction(tr("Reinstall Mod"), this, SLOT(reinstallMod_clicked()));
+ menu->addAction(tr("Remove Mod..."), this, SLOT(removeMod_clicked()));
menu->addSeparator();