summaryrefslogtreecommitdiff
path: root/eel/eel-wrap-table.c
diff options
context:
space:
mode:
authorBalló György <[email protected]>2013-11-30 13:51:33 +0100
committerBalló György <[email protected]>2013-11-30 13:51:33 +0100
commitabc518d3298d6e1f73b0163dc09ce60ff60c248d (patch)
tree02919f6283767f237e5b57e3c86f6001840fc650 /eel/eel-wrap-table.c
parentf17baf5908a1d27c7a68392944fce430e0bfd43e (diff)
downloadcaja-abc518d3298d6e1f73b0163dc09ce60ff60c248d.tar.bz2
caja-abc518d3298d6e1f73b0163dc09ce60ff60c248d.tar.xz
Fix assertion failture on max_child_size
This fixes the crasher when opening properties.
Diffstat (limited to 'eel/eel-wrap-table.c')
-rw-r--r--eel/eel-wrap-table.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/eel/eel-wrap-table.c b/eel/eel-wrap-table.c
index 26e06ef8..eea8b2d0 100644
--- a/eel/eel-wrap-table.c
+++ b/eel/eel-wrap-table.c
@@ -535,6 +535,9 @@ wrap_table_layout (EelWrapTable *wrap_table)
g_assert (EEL_IS_WRAP_TABLE (wrap_table));
max_child_dimensions = wrap_table_get_max_child_dimensions (wrap_table);
+ max_child_dimensions.width = MAX (max_child_dimensions.width, 1);
+ max_child_dimensions.height = MAX (max_child_dimensions.height, 1);
+
content_bounds = wrap_table_get_content_bounds (wrap_table);
pos.x = content_bounds.x0;
pos.y = content_bounds.y0;