diff --git a/CHANGELOG.md b/CHANGELOG.md index adfb5061da..ea03fc918c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # Unreleased +- On Wayland, fix `with_title()` not setting the windows title - On Wayland, add `set_wayland_theme()` to control client decoration color theme - Added serde serialization to `os::unix::XWindowType`. - **Breaking:** `image` crate upgraded to 0.21. This is exposed as part of the `icon_loading` API. diff --git a/src/platform/linux/wayland/window.rs b/src/platform/linux/wayland/window.rs index 276986314a..45ae3bd414 100644 --- a/src/platform/linux/wayland/window.rs +++ b/src/platform/linux/wayland/window.rs @@ -81,6 +81,8 @@ impl Window { frame.set_app_id(app_id); } + frame.set_title(attributes.title); + for &(_, ref seat) in evlp.seats.lock().unwrap().iter() { frame.new_seat(seat); }