x11: Fix window menu not showing (#15328)

Fixes
https://github.com/zed-industries/zed/issues/15245#issuecomment-2252790889

Release Notes:

- Linux: Fixed window menu not showing on X11
This commit is contained in:
apricotbucket28 2024-07-27 16:29:48 -03:00 committed by GitHub
parent 3a44a59f8e
commit 04e25525bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 23 additions and 14 deletions

View file

@ -185,13 +185,7 @@ impl WaylandWindowState {
active: false,
hovered: false,
in_progress_window_controls: None,
// Assume that we can do anything, unless told otherwise
window_controls: WindowControls {
fullscreen: true,
maximize: true,
minimize: true,
window_menu: true,
},
window_controls: WindowControls::default(),
inset: None,
})
}