update the strut when strut_partial changes

This commit is contained in:
Dana Jansens 2007-05-28 02:23:23 +00:00
parent 2050e99a5f
commit 8205b6581d

View file

@ -1451,6 +1451,9 @@ static void event_handle_client(ObClient *client, XEvent *e)
else if (msgtype == prop_atoms.net_wm_strut) { else if (msgtype == prop_atoms.net_wm_strut) {
client_update_strut(client); client_update_strut(client);
} }
else if (msgtype == prop_atoms.net_wm_strut_partial) {
client_update_strut(client);
}
else if (msgtype == prop_atoms.net_wm_icon) { else if (msgtype == prop_atoms.net_wm_icon) {
client_update_icons(client); client_update_icons(client);
} }