Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorgrbr404 <166065505+grbr404@users.noreply.github.com>2025-06-05 23:39:42 +0200
committerGitHub <noreply@github.com>2025-06-05 23:39:42 +0200
commitfbb8fa5c1a23aa6a90adb5d0c002bd8ffcfba3a7 (patch)
tree4ec558ce53fd2832825e16a3b759e1be4054e17f /source
parent08787a9f8b99c4a41d0e8ab7a2d053e81f7237b7 (diff)
Update StarItemSlotWidget.cpp
Diffstat (limited to 'source')
-rw-r--r--source/windowing/StarItemSlotWidget.cpp4
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());
}