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/pluginlist.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/pluginlist.cpp')
| -rw-r--r-- | src/pluginlist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp index 50b5c69c..6cb4ca13 100644 --- a/src/pluginlist.cpp +++ b/src/pluginlist.cpp @@ -1185,7 +1185,7 @@ QVariant PluginList::displayData(const QModelIndex& modelIndex) const return m_ESPs[index].name; case COL_PRIORITY: - return m_ESPs[index].priority; + return QString::number(m_ESPs[index].priority); case COL_MODINDEX: return m_ESPs[index].index; |
