Gui: [skip ci] fix locale issue for InputField on Windows

This commit is contained in:
wmayer
2022-03-27 11:35:46 +02:00
parent 5591f98b17
commit ae61d8df53

View File

@@ -95,6 +95,9 @@ InputField::InputField(QWidget * parent)
QObject::connect(this, SIGNAL(textChanged(QString)),
this, SLOT(newInput(QString)));
#if FC_OS_WIN32
setLocale(QLocale());
#endif
}
InputField::~InputField()