fix: Cyrillic and other non-Latin text shows as question marks or garbage (#15419)

This commit is contained in:
Kris Austin
2026-08-29 14:48:05 -03:00
committed by GitHub
parent db29f570bd
commit 05b3c9053e
3 changed files with 36 additions and 12 deletions
+1 -1
View File
@@ -7530,7 +7530,7 @@ void Tab::delete_preset()
for (auto &preset2 : *m_presets)
if (preset2.inherits() == current_preset.name) {
++count;
presets += "\n - " + preset2.name;
presets += "\n - " + from_u8(preset2.name);
}
if (count > 0) {
msg = _L("Presets inherited by other presets cannot be deleted!");