diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2021-07-30 21:29:16 -0500 |
|---|---|---|
| committer | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2023-09-21 17:23:34 -0500 |
| commit | 535623693e63569f485c15984274ea65c4d0c872 (patch) | |
| tree | 2782a219fd0eec5717f1df81f0969388ded15b35 /src/modlistcontextmenu.cpp | |
| parent | 69f953a3fb181eddaf730e83e2ac63ec7f154b14 (diff) | |
Add menu item to auto-assign categories based on nexus assignments
Diffstat (limited to 'src/modlistcontextmenu.cpp')
| -rw-r--r-- | src/modlistcontextmenu.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modlistcontextmenu.cpp b/src/modlistcontextmenu.cpp index 8c9c0206..66766b0e 100644 --- a/src/modlistcontextmenu.cpp +++ b/src/modlistcontextmenu.cpp @@ -94,6 +94,9 @@ void ModListGlobalContextMenu::populate(OrganizerCore& core, ModListView* view, addAction(tr("Check for updates"), [=]() { view->actions().checkModsForUpdates(); }); + addAction(tr("Auto assign categories"), [=]() { + view->actions().assignCategories(); + }); addAction(tr("Refresh"), &core, &OrganizerCore::profileRefresh); addAction(tr("Export to csv..."), [=]() { view->actions().exportModListCSV(); |
