summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAl12rs <gabriel.cortesi@outlook.com>2018-03-04 19:12:06 +0100
committerAl12rs <gabriel.cortesi@outlook.com>2018-03-07 14:41:26 +0100
commit7c87e9a64556c588a66482ea9acace52c76af7cd (patch)
treed8197a184215c3ff5f07a4a806aaa9cd4d9b64b5 /src/mainwindow.cpp
parent52501e73c9c205c08b1a8a288c88b5c3362a1381 (diff)
Edited "Add/Remove category" menu entry text to "Change Category".
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index ddd7ef92..f5be22f0 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -3321,7 +3321,7 @@ void MainWindow::on_modList_customContextMenuRequested(const QPoint &pos)
} else if (std::find(flags.begin(), flags.end(), ModInfo::FLAG_FOREIGN) != flags.end()) {
// nop, nothing to do with this mod
} else {
- QMenu *addRemoveCategoriesMenu = new QMenu(tr("Add/Remove Categories"));
+ QMenu *addRemoveCategoriesMenu = new QMenu(tr("Change Categories"));
populateMenuCategories(addRemoveCategoriesMenu, 0);
connect(addRemoveCategoriesMenu, SIGNAL(aboutToHide()), this, SLOT(addRemoveCategories_MenuHandler()));
addMenuAsPushButton(menu, addRemoveCategoriesMenu);