summaryrefslogtreecommitdiff
path: root/modules/other/gail/gailentry.c
diff options
context:
space:
mode:
Diffstat (limited to 'modules/other/gail/gailentry.c')
-rw-r--r--modules/other/gail/gailentry.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/other/gail/gailentry.c b/modules/other/gail/gailentry.c
index 5b01989e0f..9da1f45175 100644
--- a/modules/other/gail/gailentry.c
+++ b/modules/other/gail/gailentry.c
@@ -1204,7 +1204,7 @@ gail_entry_do_action (AtkAction *action,
*/
return FALSE;
- if (!gtk_widget_get_sensitive (widget) || !GTK_WIDGET_VISIBLE (widget))
+ if (!gtk_widget_get_sensitive (widget) || !gtk_widget_get_visible (widget))
return FALSE;
switch (i)
@@ -1232,7 +1232,7 @@ idle_do_action (gpointer data)
entry->action_idle_handler = 0;
widget = GTK_ACCESSIBLE (entry)->widget;
if (widget == NULL /* State is defunct */ ||
- !gtk_widget_get_sensitive (widget) || !GTK_WIDGET_VISIBLE (widget))
+ !gtk_widget_get_sensitive (widget) || !gtk_widget_get_visible (widget))
return FALSE;
gtk_widget_activate (widget);