Permalink
Browse files
Qt: Fix initializing locale
- Loading branch information...
Showing
with
1 addition
and
0 deletions.
-
+1
−0
src/platform/qt/GBAApp.cpp
|
|
@@ -49,6 +49,7 @@ GBAApp::GBAApp(int& argc, char* argv[]) |
|
|
|
|
|
if (!m_configController.getQtOption("language").isNull()) {
|
|
|
locale = QLocale(m_configController.getQtOption("language").toString());
|
|
|
+ QLocale::setDefault(locale);
|
|
|
}
|
|
|
|
|
|
QTranslator qtTranslator;
|
|
|
|
0 comments on commit
db08a75