diff options
author | Matthias Clasen <mclasen@redhat.com> | 2015-12-04 07:52:18 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2015-12-15 08:41:16 -0500 |
commit | 782c2762bf55fb17402f534267c370cf460869af (patch) | |
tree | afb5ba07e21cd3f9636fdfced9d5e6d5527b443f /gtk/gtkcssgadget.c | |
parent | a52c3a3db9e1c5e141fa4385ec27bdaa8d7b9b94 (diff) | |
download | gtk+-782c2762bf55fb17402f534267c370cf460869af.tar.gz |
gadget: Be more forgiving to size inconsistencies
Instead of asserting if we hit negative content sizes,
warn and continue. This is easier to work with in this
transition period.
Diffstat (limited to 'gtk/gtkcssgadget.c')
-rw-r--r-- | gtk/gtkcssgadget.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/gtk/gtkcssgadget.c b/gtk/gtkcssgadget.c index de8641810d..60bb9d2a8c 100644 --- a/gtk/gtkcssgadget.c +++ b/gtk/gtkcssgadget.c @@ -451,8 +451,17 @@ gtk_css_gadget_allocate (GtkCssGadget *gadget, if (baseline >= 0) baseline += extents.top; - g_assert (content_allocation.width >= 0); - g_assert (content_allocation.height >= 0); + if (content_allocation.width < 0) + { + g_warning ("Negative content width while allocating gadget\n"); + content_allocation.width = 0; + } + + if (content_allocation.height < 0) + { + g_warning ("Negative content height while allocating gadget\n"); + content_allocation.width = 0; + } GTK_CSS_GADGET_GET_CLASS (gadget)->allocate (gadget, &content_allocation, baseline, &content_clip); |