widget: add missing mouse_remove in index()

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-06-26 15:56:55 +02:00
parent d45590fbcc
commit db07fd0362
1 changed files with 3 additions and 0 deletions

View File

@ -521,6 +521,9 @@ luaA_widget_index(lua_State *L)
case A_TK_MOUSE_ADD:
lua_pushcfunction(L, luaA_widget_mouse_add);
return 1;
case A_TK_MOUSE_REMOVE:
lua_pushcfunction(L, luaA_widget_mouse_remove);
return 1;
case A_TK_SET:
lua_pushcfunction(L, luaA_widget_set);
return 1;