summaryrefslogtreecommitdiff
path: root/gtk/gtkgrid.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2013-04-28 18:46:41 -0400
committerMatthias Clasen <mclasen@redhat.com>2013-04-28 18:46:41 -0400
commit13858fde29e9626d1d959d436f87105263bced98 (patch)
treec4f56bc02a90950650c1f9670436010fec78e089 /gtk/gtkgrid.c
parentef759ef19dc70243eabec5a05198b63f12ba55f7 (diff)
downloadgtk+-13858fde29e9626d1d959d436f87105263bced98.tar.gz
GtkGrid: Undo a size allocation tweak
Revert 5e1a06d1b124f09a1a54d5ae0f38905dbdc2cc81 This change caused empty rows to 'open up', which was not intended and causes problems as seen in bug 698660.
Diffstat (limited to 'gtk/gtkgrid.c')
-rw-r--r--gtk/gtkgrid.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/gtk/gtkgrid.c b/gtk/gtkgrid.c
index 850cb094d2..a1183e892d 100644
--- a/gtk/gtkgrid.c
+++ b/gtk/gtkgrid.c
@@ -617,18 +617,8 @@ gtk_grid_request_init (GtkGridRequest *request,
child = list->data;
attach = &child->attach[orientation];
- if (attach->span != 1)
- continue;
- if (gtk_widget_compute_expand (child->widget, orientation))
+ if (attach->span == 1 && gtk_widget_compute_expand (child->widget, orientation))
lines->lines[attach->pos - lines->min].expand = TRUE;
-
- lines->lines[attach->pos - lines->min].empty = FALSE;
- }
-
- for (i = 0; i < lines->max - lines->min; i++)
- {
- if (lines->lines[i].empty)
- lines->lines[i].expand = TRUE;
}
}
@@ -1037,8 +1027,6 @@ gtk_grid_request_compute_expand (GtkGridRequest *request,
if (attach->pos + i >= max || attach->pos + 1 < min)
continue;
- if (line->empty)
- line->expand = TRUE;
line->empty = FALSE;
}