diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPane.cpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPane.cpp index c9699924..ca94d54a 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPane.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPane.cpp @@ -2,6 +2,7 @@ #include #include +#include #include "src/Insight/UserInterfaces/InsightWindow/UiLoader.hpp" #include "src/Insight/InsightSignals.hpp" @@ -77,7 +78,7 @@ namespace Bloom::Widgets this->attachPaneButton = this->container->findChild("attach-pane-btn"); auto* memoryCapacityLabel = this->container->findChild("memory-capacity-label"); - memoryCapacityLabel->setText(QString::number(this->targetMemoryDescriptor.size()) + " Bytes"); + memoryCapacityLabel->setText(QLocale(QLocale::English).toString(this->targetMemoryDescriptor.size()) + " Bytes"); this->staleDataLabelContainer = this->container->findChild("stale-data-label");