wayland: Implement zoom function

Can now maximize window by double clicking on the title bar
This commit is contained in:
apricotbucket28
2024-05-06 15:39:25 -03:00
parent 02b710751e
commit b8d87ef3de

View File

@@ -676,7 +676,12 @@ impl PlatformWindow for WaylandWindow {
}
fn zoom(&self) {
// todo(linux)
let state = self.borrow();
if !state.maximized {
state.toplevel.set_maximized();
} else {
state.toplevel.unset_maximized();
}
}
fn toggle_fullscreen(&self) {