[gnome-control-center] Call gtk_widget_set_allocation() during size_allocate
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-control-center] Call gtk_widget_set_allocation() during size_allocate
- Date: Tue, 24 Aug 2010 08:25:39 +0000 (UTC)
commit 341dfaa879507c9d3f1d950ac0e2a82b929385fd
Author: Benjamin Otte <otte redhat com>
Date: Tue Aug 24 10:24:22 2010 +0200
Call gtk_widget_set_allocation() during size_allocate
Fixes panels not drawing themselves with GTK 3.
libgnome-control-center/cc-panel.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/libgnome-control-center/cc-panel.c b/libgnome-control-center/cc-panel.c
index d93f18c..dd9b8cd 100644
--- a/libgnome-control-center/cc-panel.c
+++ b/libgnome-control-center/cc-panel.c
@@ -153,11 +153,13 @@ cc_panel_size_allocate (GtkWidget *widget,
GtkAllocation child_allocation;
guint border_width;
+ gtk_widget_set_allocation (widget, allocation);
+
+
child_allocation = *allocation;
border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
-
child_allocation.width -= 2 * border_width;
child_allocation.height -= 2 * border_width;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]