feat: add Window::is_decorated (#2172)

* feat: add `Window::is_decorated`

* move it right after `set_decorations`
This commit is contained in:
Amr Bashir 2022-02-17 15:31:13 +02:00 committed by GitHub
parent cd9ec0afc7
commit fa14863284
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 51 additions and 0 deletions

View file

@ -544,6 +544,12 @@ impl Window {
});
}
#[inline]
pub fn is_decorated(&self) -> bool {
let window_state = self.window_state.lock();
window_state.window_flags.contains(WindowFlags::DECORATIONS)
}
#[inline]
pub fn set_always_on_top(&self, always_on_top: bool) {
let window = self.window.clone();