client: emit property::workarea on events if client has strut
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
76fb212332
commit
3a1cbd6e35
7
client.c
7
client.c
|
@ -929,6 +929,8 @@ client_set_minimized(lua_State *L, int cidx, bool s)
|
||||||
else
|
else
|
||||||
window_state_set(c->window, XCB_WM_STATE_NORMAL);
|
window_state_set(c->window, XCB_WM_STATE_NORMAL);
|
||||||
ewmh_client_update_hints(c);
|
ewmh_client_update_hints(c);
|
||||||
|
if(strut_has_value(&c->strut))
|
||||||
|
screen_emit_signal(globalconf.L, c->screen, "property::workarea", 0);
|
||||||
/* execute hook */
|
/* execute hook */
|
||||||
hook_property(c, "minimized");
|
hook_property(c, "minimized");
|
||||||
luaA_object_emit_signal(L, cidx, "property::minimized", 0);
|
luaA_object_emit_signal(L, cidx, "property::minimized", 0);
|
||||||
|
@ -1268,6 +1270,9 @@ client_unmanage(client_t *c)
|
||||||
|
|
||||||
luaA_class_emit_signal(globalconf.L, &client_class, "list", 0);
|
luaA_class_emit_signal(globalconf.L, &client_class, "list", 0);
|
||||||
|
|
||||||
|
if(strut_has_value(&c->strut))
|
||||||
|
screen_emit_signal(globalconf.L, c->screen, "property::workarea", 0);
|
||||||
|
|
||||||
window_state_set(c->window, XCB_WM_STATE_WITHDRAWN);
|
window_state_set(c->window, XCB_WM_STATE_WITHDRAWN);
|
||||||
|
|
||||||
titlebar_client_detach(c);
|
titlebar_client_detach(c);
|
||||||
|
@ -1656,6 +1661,8 @@ luaA_client_set_hidden(lua_State *L, client_t *c)
|
||||||
c->hidden = b;
|
c->hidden = b;
|
||||||
client_need_reban(c);
|
client_need_reban(c);
|
||||||
hook_property(c, "hidden");
|
hook_property(c, "hidden");
|
||||||
|
if(strut_has_value(&c->strut))
|
||||||
|
screen_emit_signal(globalconf.L, c->screen, "property::workarea", 0);
|
||||||
luaA_object_emit_signal(L, -3, "property::hidden", 0);
|
luaA_object_emit_signal(L, -3, "property::hidden", 0);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue