[gtk+/wip/baedert/drawing: 227/396] frame: Fix child allocation
- From: Timm Bäder <baedert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/baedert/drawing: 227/396] frame: Fix child allocation
- Date: Wed, 19 Jul 2017 11:29:26 +0000 (UTC)
commit cfcff701b1a6d66c01098642f8e7de5a74f5d0e9
Author: Timm Bäder <mail baedert org>
Date: Sat May 27 17:31:05 2017 +0200
frame: Fix child allocation
Don't add the parent's allocation from gtk_widget_get_allocation
gtk/gtkframe.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gtk/gtkframe.c b/gtk/gtkframe.c
index 2779900..c2f6cd4 100644
--- a/gtk/gtkframe.c
+++ b/gtk/gtkframe.c
@@ -695,8 +695,8 @@ gtk_frame_real_compute_child_allocation (GtkFrame *frame,
else
height = 0;
- child_allocation->x = allocation.x;
- child_allocation->y = allocation.y + height;
+ child_allocation->x = 0;
+ child_allocation->y = height;
child_allocation->width = MAX (1, allocation.width);
child_allocation->height = MAX (1, allocation.height - height);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]