diff options
| author | Jeremy Rimpo <jrim@rimpo.org> | 2023-11-16 23:38:30 -0600 |
|---|---|---|
| committer | Jeremy Rimpo <jrim@rimpo.org> | 2023-11-16 23:57:16 -0600 |
| commit | 773e3acd588209537877f7068b60c4125c86c630 (patch) | |
| tree | 614ae113eee2bdc01f89a228a9219ba8fe7093e8 /src/modlist.cpp | |
| parent | 1b4ed397474b4f9f4e85a4381e1f0164cc4edeca (diff) | |
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
Diffstat (limited to 'src/modlist.cpp')
| -rw-r--r-- | src/modlist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |
