diff --git a/CHANGELOG.md b/CHANGELOG.md index 899d2f0..ca4a950 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - Move from `objc` crates to `objc2` crates. - Fix `AsyncFileDialog` blocking the executor on Windows (#191) - Add `TDF_SIZE_TO_CONTENT` to `TaskDialogIndirect` config so that it can display longer text without truncating/wrapping (80 characters instead of 55) (#202) +- Fix `xdg-portal` backend not accepting special characters in message dialogs ## 0.14.0 - i18n for GTK and XDG Portal diff --git a/src/backend/linux/zenity.rs b/src/backend/linux/zenity.rs index 5d55e6b..cd5d9dd 100644 --- a/src/backend/linux/zenity.rs +++ b/src/backend/linux/zenity.rs @@ -38,7 +38,9 @@ impl From for ZenityError { pub type ZenityResult = Result; fn command() -> Command { - Command::new("zenity") + let mut cmd = Command::new("zenity"); + cmd.arg("--no-markup"); + cmd } fn add_filters(command: &mut Command, filters: &[Filter]) {