wibox: newindex allow border color change
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
14670defd9
commit
ebab2b7707
4
wibox.c
4
wibox.c
|
@ -954,6 +954,10 @@ luaA_wibox_newindex(lua_State *L)
|
||||||
(*wibox)->need_update = true;
|
(*wibox)->need_update = true;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case A_TK_BORDER_COLOR:
|
||||||
|
if((buf = luaL_checklstring(L, 3, &len)))
|
||||||
|
xcolor_init_reply(xcolor_init_unchecked(&(*wibox)->sw.border.color, buf, len));
|
||||||
|
break;
|
||||||
case A_TK_VISIBLE:
|
case A_TK_VISIBLE:
|
||||||
b = luaA_checkboolean(L, 3);
|
b = luaA_checkboolean(L, 3);
|
||||||
if(b != (*wibox)->isvisible)
|
if(b != (*wibox)->isvisible)
|
||||||
|
|
Loading…
Reference in New Issue