1
0
Fork 0
forked from wry/wry

autocommit 2022-03-27 01:36:44 CET

This commit is contained in:
Julian Orth 2022-03-27 01:36:44 +01:00
parent 86eb70ac3c
commit 9630354245
2 changed files with 18 additions and 5 deletions

View file

@ -205,7 +205,7 @@ impl Wm {
property: atoms._NET_WM_NAME,
ty: atoms.UTF8_STRING,
format: 8,
data: "wlroots wm".as_bytes(),
data: "jay wm".as_bytes(),
});
c.call(&ChangeProperty {
mode: PROP_MODE_REPLACE,
@ -571,7 +571,8 @@ impl Wm {
return;
}
}
*data.info.title.borrow_mut() = Some(buf.into());
*data.info.title.borrow_mut() = Some(buf.as_bstr().to_string());
data.title_changed();
}
async fn load_window_wm_name(&self, data: &Rc<XwindowData>) {