widget: add missing mouse_remove in index()
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
d45590fbcc
commit
db07fd0362
3
widget.c
3
widget.c
|
@ -521,6 +521,9 @@ luaA_widget_index(lua_State *L)
|
||||||
case A_TK_MOUSE_ADD:
|
case A_TK_MOUSE_ADD:
|
||||||
lua_pushcfunction(L, luaA_widget_mouse_add);
|
lua_pushcfunction(L, luaA_widget_mouse_add);
|
||||||
return 1;
|
return 1;
|
||||||
|
case A_TK_MOUSE_REMOVE:
|
||||||
|
lua_pushcfunction(L, luaA_widget_mouse_remove);
|
||||||
|
return 1;
|
||||||
case A_TK_SET:
|
case A_TK_SET:
|
||||||
lua_pushcfunction(L, luaA_widget_set);
|
lua_pushcfunction(L, luaA_widget_set);
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in New Issue