diff options
Diffstat (limited to 'eel')
-rw-r--r-- | eel/eel-wrap-table.c | 3 |
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; |