diff --git a/components/rtgui/widgets/button.c b/components/rtgui/widgets/button.c index ca89b5383bededf6e1b438a8a2afa4b714f48735..35f910e2132d17cb1ad5ea408d2c30aa1a8b4d4c 100644 --- a/components/rtgui/widgets/button.c +++ b/components/rtgui/widgets/button.c @@ -86,6 +86,7 @@ rt_bool_t rtgui_button_event_handler(struct rtgui_widget* widget, struct rtgui_e { struct rtgui_event_kbd* ekbd = (struct rtgui_event_kbd*) event; + if (RTGUI_WIDGET_IS_HIDE(widget)) RT_FALSE; if ((ekbd->key == RTGUIK_RETURN) || (ekbd->key == RTGUIK_SPACE)) { if (RTGUI_KBD_IS_DOWN(ekbd)) @@ -110,6 +111,7 @@ rt_bool_t rtgui_button_event_handler(struct rtgui_widget* widget, struct rtgui_e break; case RTGUI_EVENT_MOUSE_BUTTON: + if (RTGUI_WIDGET_IS_HIDE(widget)) RT_FALSE; { struct rtgui_event_mouse* emouse = (struct rtgui_event_mouse*)event;