bugfix(x11): Use the right atom type in focus_window()
Closes #3248 by removing an Xlibism I forgot about Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
parent
e9784127df
commit
da947992ac
5 changed files with 60 additions and 7 deletions
|
|
@ -1785,9 +1785,9 @@ impl UnownedWindow {
|
|||
let state_type_atom = atoms[CARD32];
|
||||
let is_minimized = if let Ok(state) =
|
||||
self.xconn
|
||||
.get_property(self.xwindow, state_atom, state_type_atom)
|
||||
.get_property::<u32>(self.xwindow, state_atom, state_type_atom)
|
||||
{
|
||||
state.contains(&(ffi::IconicState as c_ulong))
|
||||
state.contains(&super::ICONIC_STATE)
|
||||
} else {
|
||||
false
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue