Wibox: Unref old widgets table

When setting a new widgets table, the wibox obviously should drop its reference
on the old widgets table.

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2010-09-16 18:27:04 +02:00
parent 89f05c90ca
commit abf329d7d8
1 changed files with 1 additions and 0 deletions

View File

@ -1083,6 +1083,7 @@ luaA_wibox_set_widgets(lua_State *L, wibox_t *wibox)
}
/* duplicate table because next function will eat it */
lua_pushvalue(L, -1);
luaA_object_unref_item(L, -4, wibox->widgets_table);
wibox->widgets_table = luaA_object_ref_item(L, -4, -1);
luaA_object_emit_signal(L, -3, "property::widgets", 0);
wibox_need_update(wibox);