Add Window::is_maximized method (#1804)

This commit is contained in:
Simas Toleikis
2021-01-27 20:01:17 +02:00
committed by GitHub
parent 05125029c6
commit 3f1e09ec0e
11 changed files with 49 additions and 7 deletions

View File

@@ -373,6 +373,12 @@ impl Window {
x11_or_wayland!(match self; Window(w) => w.set_maximized(maximized))
}
#[inline]
pub fn is_maximized(&self) -> bool {
// TODO: Not implemented
false
}
#[inline]
pub fn set_minimized(&self, minimized: bool) {
x11_or_wayland!(match self; Window(w) => w.set_minimized(minimized))