diff options
Diffstat (limited to 'source/windowing')
-rw-r--r-- | source/windowing/StarItemSlotWidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/windowing/StarItemSlotWidget.cpp b/source/windowing/StarItemSlotWidget.cpp index 73a554f..2d47d8a 100644 --- a/source/windowing/StarItemSlotWidget.cpp +++ b/source/windowing/StarItemSlotWidget.cpp @@ -196,8 +196,8 @@ if (m_item->count() > 1 && m_showCount) { // we don't need to tell people that formattedCount = toString(m_item->count() / 1000000000) + "b"; } else if (m_item->count() >= 1000000) { // Million (m) formattedCount = toString(m_item->count() / 1000000) + "m"; - } else if (m_item->count() >= 1000) { // Thousand (k) - formattedCount = toString(m_item->count() / 10000) + "k"; + } else if (m_item->count() >= 10000) { // Thousand (k) + formattedCount = toString(m_item->count() / 1000) + "k"; } else { formattedCount = toString(m_item->count()); } |