forked from AuroraMiddleware/gtk
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:
parent
d7d940c71e
commit
88a90b8abb
@ -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.
|
||||||
|
Loading…
Reference in New Issue
Block a user