From 257a1724acf91d24a7a1b5df691e3fe0c045d481 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 20 Mar 2022 21:17:05 +0100 Subject: [PATCH] Call wxSetlocale the same way we call setlocale to possibly fix #2218. --- src/wx/wx_util.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wx/wx_util.cc b/src/wx/wx_util.cc index fad3779bd..5f3769d21 100644 --- a/src/wx/wx_util.cc +++ b/src/wx/wx_util.cc @@ -429,6 +429,8 @@ dcpomatic_setup_i18n () if (locale) { dcpomatic_setup_gettext_i18n (wx_to_std (locale->GetCanonicalName ())); } + + wxSetlocale (LC_ALL, ""); } -- 2.30.2