From 218479f093d04f7f9b43751b2f5569fa69f6375d Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 28 Mar 2022 11:07:37 -0400 Subject: [PATCH] Add commas or dots, where appropriate, for display of score. --- widgets/activeStations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/activeStations.cpp b/widgets/activeStations.cpp index fc93c6fec..9092356ec 100644 --- a/widgets/activeStations.cpp +++ b/widgets/activeStations.cpp @@ -111,7 +111,7 @@ void ActiveStations::setRate(int n) void ActiveStations::setScore(int n) { - ui->score->setText(QString::number(n)); + ui->score->setText(QLocale(QLocale::English).toString(n)); } void ActiveStations::setBandChanges(int n)