This commit is contained in:
Sushant Mishra 2025-08-26 22:57:00 +03:30 committed by GitHub
commit ccba674539
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -155,6 +155,12 @@ impl WaylandWindowState {
BladeRenderer::new(gpu_context, &raw_window, config)?
};
if let Some(titlebar) = options.titlebar {
if let Some(title) = titlebar.title {
toplevel.set_title(title.to_string());
}
}
Ok(Self {
xdg_surface,
acknowledged_first_configure: false,