Files
oak-gpui/crates/gpui/src
Akilan Elango 7bd18fa653 Sync maximized state from top-level configure event for a wayland window (#11003)
* Otherwise is_maximized always returns `true`



Release Notes:

- Fixed maximized state. Tested with a dummy maximize/restore button
with the `zoom()` (not implemented yet). Without the right `maximized`,
in toggle zoom function is not possible to call `set_maximized()` or
`unset_maximized()`.

```rust
    fn zoom(&self) {
      if self.is_maximized() {
        self.borrow_mut().toplevel.unset_maximized();
      } else {
        self.borrow_mut().toplevel.set_maximized();
      }
    }
```
2024-04-26 14:03:19 -07:00
..
2024-04-18 14:54:18 -07:00
2024-03-11 10:45:57 +01:00
2024-03-06 18:15:06 -08:00
2024-04-12 11:40:59 -06:00
2024-01-21 14:26:45 -08:00
2024-04-26 13:25:25 -06:00
2024-01-21 14:26:45 -08:00