Fix entry names.

This commit is contained in:
Mikaël Capelle
2021-01-16 13:36:12 +01:00
parent 65c9c69568
commit 253b5e9f3f
+2 -2
View File
@@ -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) {