Update x11-dl
This commit is contained in:
parent
10f5528c14
commit
c068a770f0
2 changed files with 7 additions and 11 deletions
|
|
@ -535,11 +535,7 @@ impl Window {
|
|||
message_type: state_atom, // the _NET_WM_STATE atom is sent to change the state of a window
|
||||
format: 32, // view `data` as `c_long`s
|
||||
data: {
|
||||
// TODO replace this with normal instantiation when x11-rs makes
|
||||
// ClientMessageData instantiable.
|
||||
let mut data = unsafe {
|
||||
mem::transmute::<[libc::c_long; 5], ffi::ClientMessageData>([0; 5])
|
||||
};
|
||||
let mut data = ffi::ClientMessageData::new();
|
||||
// This first `long` is the action; `1` means add/set following property.
|
||||
data.set_long(0, 1);
|
||||
// This second `long` is the property to set (fullscreen)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue