diff --git a/widgets/graph.c b/widgets/graph.c index 0a8a2d65..ee660d31 100644 --- a/widgets/graph.c +++ b/widgets/graph.c @@ -448,6 +448,13 @@ luaA_graph_index(lua_State *L) break; case A_TK_WIDTH: lua_pushnumber(L, d->width); + break; + case A_TK_BORDER_COLOR: + lua_pushstring(L, d->border_color.name); + break; + case A_TK_BG: + lua_pushstring(L, d->bg.name); + break; case A_TK_GROW: switch(d->grow) {