add support for _NET_WM_STATE_MAXIMIZED_{HORZ,VERT}; from Alexander Polakov.
while I'm unsure of the final look of _NET_WM_STATE, there's no reason to delay this support.
This commit is contained in:
5
client.c
5
client.c
@@ -133,6 +133,7 @@ client_init(Window win, struct screen_ctx *sc, int mapped)
|
||||
xu_ewmh_net_client_list(sc);
|
||||
|
||||
client_wm_protocols(cc);
|
||||
xu_ewmh_restore_net_wm_state(cc);
|
||||
|
||||
if (mapped)
|
||||
group_autogroup(cc);
|
||||
@@ -301,6 +302,7 @@ client_maximize(struct client_ctx *cc)
|
||||
|
||||
resize:
|
||||
client_resize(cc, 0);
|
||||
xu_ewmh_set_net_wm_state(cc);
|
||||
}
|
||||
|
||||
void
|
||||
@@ -341,6 +343,7 @@ client_vmaximize(struct client_ctx *cc)
|
||||
|
||||
resize:
|
||||
client_resize(cc, 0);
|
||||
xu_ewmh_set_net_wm_state(cc);
|
||||
}
|
||||
|
||||
void
|
||||
@@ -381,6 +384,7 @@ client_hmaximize(struct client_ctx *cc)
|
||||
|
||||
resize:
|
||||
client_resize(cc, 0);
|
||||
xu_ewmh_set_net_wm_state(cc);
|
||||
}
|
||||
|
||||
void
|
||||
@@ -389,6 +393,7 @@ client_resize(struct client_ctx *cc, int reset)
|
||||
if (reset) {
|
||||
cc->flags &= ~CLIENT_MAXIMIZED;
|
||||
cc->bwidth = Conf.bwidth;
|
||||
xu_ewmh_set_net_wm_state(cc);
|
||||
}
|
||||
|
||||
client_draw_border(cc);
|
||||
|
||||
Reference in New Issue
Block a user