Warn if a widget requests minimum size > natural size

Since this makes no sense and there's no reason we should
have to check for it elsewhere just in case some widget is
busted.

https://bugzilla.gnome.org/show_bug.cgi?id=628808
This commit is contained in:
Havoc Pennington 2010-09-05 21:46:22 -04:00 committed by Matthias Clasen
parent d7d940c71e
commit 88a90b8abb

View File

@ -282,6 +282,12 @@ compute_size_for_orientation (GtkSizeRequest *request,
&min_size, &nat_size); &min_size, &nat_size);
} }
if (min_size > nat_size)
{
g_warning ("%s %p reported min size %d and natural size %d; natural size must be >= min size",
G_OBJECT_TYPE_NAME (request), request, min_size, nat_size);
}
/* Support for dangling "size-request" signals and forward derived /* Support for dangling "size-request" signals and forward derived
* classes that will not default to a ->get_width() that * classes that will not default to a ->get_width() that
* returns the values in the ->requisition cache. * returns the values in the ->requisition cache.