diff options
| author | Mikaël Capelle <capelle.mikael@gmail.com> | 2021-01-16 13:36:12 +0100 |
|---|---|---|
| committer | Mikaël Capelle <capelle.mikael@gmail.com> | 2021-01-16 13:36:12 +0100 |
| commit | 253b5e9f3f8e544c83add9530ce5dddab0b00a9c (patch) | |
| tree | f6227fc1989294cc92a157dd1b84451cc4dd6cbe /src/modlistcontextmenu.cpp | |
| parent | 65c9c695685b005656fd4d89b457b4d964dcf65e (diff) | |
Fix entry names.
Diffstat (limited to 'src/modlistcontextmenu.cpp')
| -rw-r--r-- | src/modlistcontextmenu.cpp | 4 |
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) { |
