We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3fefe5 commit 9014966Copy full SHA for 9014966
QtPMbrowser/pmbrowserwindow.cpp
@@ -1,5 +1,5 @@
1
/*
2
- Copyright 2020 - 2024 Christian R. Halaszovich
+ Copyright 2020 - 2025 Christian R. Halaszovich
3
4
This file is part of PMbrowser.
5
@@ -803,7 +803,8 @@ void PMbrowserWindow::on_actionExport_Metadata_as_Table_triggered()
803
try {
804
hkLib::locale_manager lm;
805
if (dlg.useSystemLocale()) {
806
- lm.setLocale(""); // set default locale
+ // for macOS, we need to jump to some hoops
807
+ lm.setLocale(QLocale::system().name().toUtf8());
808
}
809
else {
810
lm.setLocale("C");
0 commit comments