diff options
| author | Tannin <devnull@localhost> | 2013-04-04 21:49:44 +0200 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2013-04-04 21:49:44 +0200 |
| commit | de27ab391f5c56db9532e7cbc32145d21e5df97c (patch) | |
| tree | 349ad259558322936381297a77b207c65ed87de3 /src/pluginlist.cpp | |
| parent | d9a6dbb916236531a96b9b84b06e7be666c05d56 (diff) | |
- creating mods from overwrite
- moving files from overwrite to mods
- offline mode
- several fixes to the grouping system
- fix to "duplicate translation" errors
Diffstat (limited to 'src/pluginlist.cpp')
| -rw-r--r-- | src/pluginlist.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp index dfac8ccb..b5bb483b 100644 --- a/src/pluginlist.cpp +++ b/src/pluginlist.cpp @@ -599,13 +599,7 @@ QVariant PluginList::data(const QModelIndex &modelIndex, int role) const return m_ESPs[index].m_Name; } break; case COL_PRIORITY: { - if (m_ESPs[index].m_Priority == 0) { - return tr("min"); - } else if (m_ESPs[index].m_Priority == static_cast<int>(m_ESPs.size()) - 1) { - return tr("max"); - } else { - return QString::number(m_ESPs[index].m_Priority); - } + return m_ESPs[index].m_Priority; } break; case COL_MODINDEX: { if (m_ESPs[index].m_LoadOrder == -1) { |
