Comment 10 for bug 734381

Revision history for this message
Timothy Arceri (t-fridey) wrote :

Ok, I'm pretty sure this is a bug in the function gtk_window_resize_grip_is_visible in gtkwindow.c as the gtk2 code does not check if the window is resizable.

this would be very easy to fix. GTK 3 has the following:

 if (!priv->resizable)
    return FALSE;

Something similar needs to be added to the gtk2 function.