diff options
| author | Al12rs <gabriel.cortesi@outlook.com> | 2018-03-05 15:16:55 +0100 |
|---|---|---|
| committer | Al12rs <gabriel.cortesi@outlook.com> | 2018-03-07 14:39:25 +0100 |
| commit | 513c0629323c066a7b1d5df5ce81f3b9beac85bd (patch) | |
| tree | ba5cd3c322582929237a7bb404500af0833cc32b /src | |
| parent | 7cf0c1a29b463885e37a49691daffb98afdf58db (diff) | |
Inverted position of reinstall and remove mod, as per user request.
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cpp | 2 |
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();
|
