summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikaël Capelle <capelle.mikael@gmail.com>2021-01-16 13:36:12 +0100
committerMikaël Capelle <capelle.mikael@gmail.com>2021-01-16 13:36:12 +0100
commit253b5e9f3f8e544c83add9530ce5dddab0b00a9c (patch)
treef6227fc1989294cc92a157dd1b84451cc4dd6cbe
parent65c9c695685b005656fd4d89b457b4d964dcf65e (diff)
Fix entry names.
-rw-r--r--src/modlistcontextmenu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modlistcontextmenu.cpp b/src/modlistcontextmenu.cpp
index d8f31641..dafffbff 100644
--- a/src/modlistcontextmenu.cpp
+++ b/src/modlistcontextmenu.cpp
@@ -266,8 +266,8 @@ void ModListContextMenu::addSendToContextMenu()
QMenu* menu = new QMenu(m_view);
menu->setTitle(tr("Send to... "));
- menu->addAction(tr("Highest priority"), [this] { m_actions.sendModsToTop(m_selected); });
- menu->addAction(tr("Lowest priority"), [this] { m_actions.sendModsToBottom(m_selected); });
+ menu->addAction(tr("Lowest priority"), [this] { m_actions.sendModsToTop(m_selected); });
+ menu->addAction(tr("Highest priority"), [this] { m_actions.sendModsToBottom(m_selected); });
menu->addAction(tr("Priority..."), [this] { m_actions.sendModsToPriority(m_selected); });
menu->addAction(tr("Separator..."), [this] { m_actions.sendModsToSeparator(m_selected); });
if (overwritten) {