From 773e3acd588209537877f7068b60c4125c86c630 Mon Sep 17 00:00:00 2001 From: Jeremy Rimpo Date: Thu, 16 Nov 2023 23:38:30 -0600 Subject: A few fixes for RC 1 * Convert the priority index to a string as Windows appears to be converting these to localized numerals * Skip separators when assigning categories * Update the context menu requirements for displaying the auto-assign option * Bump to RC 2 --- src/modlist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modlist.cpp') diff --git a/src/modlist.cpp b/src/modlist.cpp index 7a951369..8945dea1 100644 --- a/src/modlist.cpp +++ b/src/modlist.cpp @@ -208,7 +208,7 @@ QVariant ModList::data(const QModelIndex& modelIndex, int role) const if (modInfo->hasAutomaticPriority()) { return QVariant(); // hide priority for mods where it's fixed } else { - return m_Profile->getModPriority(modIndex); + return QString::number(m_Profile->getModPriority(modIndex)); } } else if (column == COL_MODID) { int modID = modInfo->nexusId(); -- cgit v1.3.1