From fbb8fa5c1a23aa6a90adb5d0c002bd8ffcfba3a7 Mon Sep 17 00:00:00 2001 From: grbr404 <166065505+grbr404@users.noreply.github.com> Date: Thu, 5 Jun 2025 23:39:42 +0200 Subject: Update StarItemSlotWidget.cpp --- source/windowing/StarItemSlotWidget.cpp | 4 ++-- 1 file 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()); } -- cgit v1.2.3