From 9b0d24345f4e142d23ecf485eb681d8c12afa97a Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 11 Feb 2014 17:36:04 +0100 Subject: [PATCH] + Using locale delimiter --- src/Gui/InputField.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/InputField.cpp b/src/Gui/InputField.cpp index 7c5545a89..48db9af68 100644 --- a/src/Gui/InputField.cpp +++ b/src/Gui/InputField.cpp @@ -373,7 +373,7 @@ void InputField::wheelEvent ( QWheelEvent * event ) double val = actUnitValue + numSteps; - this->setText( QString::fromUtf8("%1 %2").arg(val).arg(actUnitStr)); + this->setText( QString::fromUtf8("%L1 %2").arg(val).arg(actUnitStr)); //if (event->orientation() == Qt::Horizontal) { // scrollHorizontally(numSteps);