Comment 2 for bug 67917

Revision history for this message
Robert Casanova (secoder) wrote :

I think that the change that was applied before, just got lost.

At line 14626 for gtk 2.10.6, says :

  if (!GTK_WIDGET_REALIZED (widget))

but it should be

  if (GTK_WIDGET_REALIZED (widget))

just removing the negation, will work again.

Thanks.