diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-05-25 00:50:30 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-05-25 00:50:30 +0200 |
| commit | 0c6b0ef264f3d8b0871d233faf648151a2e41731 (patch) | |
| tree | 505e68e564166a9eae53724f4289009506fefc7b | |
| parent | 7b13cf584e1dbafaf2beef70dca725c5f6473080 (diff) | |
try to fix force->eng on de_DE (UI has , but wx thinks .)
| -rw-r--r-- | src/wx/wx_util.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wx/wx_util.cc b/src/wx/wx_util.cc index 52606d0bf..d2c6aa4ee 100644 --- a/src/wx/wx_util.cc +++ b/src/wx/wx_util.cc @@ -500,6 +500,8 @@ dcpomatic_setup_i18n () { int language = wxLANGUAGE_DEFAULT; + wxUILocale::UseDefault(); + auto config_lang = Config::instance()->language (); if (config_lang && !config_lang->empty ()) { auto const li = wxLocale::FindLanguageInfo (std_to_wx (config_lang.get ())); |
