Remove a check that broke the color chooser a11y dump

With the visible check, the opacity slider ended up without
a labeled-by, which is sad.
This commit is contained in:
Matthias Clasen 2012-01-16 21:05:01 -05:00
parent f29195e741
commit 3e6b37726a

View File

@ -204,7 +204,7 @@ find_label (GtkWidget *widget)
ptr = labels;
while (ptr)
{
if (ptr->data && gtk_widget_get_visible (GTK_WIDGET (ptr->data)))
if (ptr->data)
{
label = ptr->data;
break;