summaryrefslogtreecommitdiff
path: root/gtk/gtkviewport.c
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2012-02-09 16:36:46 +0100
committerAlexander Larsson <alexl@redhat.com>2012-02-09 16:39:23 +0100
commit6723feae8a314b806ff783507182208107e08007 (patch)
treee77dee48f075916427419a192960060fc7c231e2 /gtk/gtkviewport.c
parentc525fe27f34dc1fbd6bf6efbe7ad51d467665d59 (diff)
downloadgtk+-6723feae8a314b806ff783507182208107e08007.tar.gz
viewport: Set frame styleclass when getting border size during size allocation
Without this you don't get the right border/padding for widget->window and the border shows up under the scrolled contents.
Diffstat (limited to 'gtk/gtkviewport.c')
-rw-r--r--gtk/gtkviewport.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gtk/gtkviewport.c b/gtk/gtkviewport.c
index 048d0f63cf..73238ee8b8 100644
--- a/gtk/gtkviewport.c
+++ b/gtk/gtkviewport.c
@@ -328,9 +328,14 @@ viewport_get_view_allocation (GtkViewport *viewport,
context = gtk_widget_get_style_context (widget);
state = gtk_widget_get_state_flags (widget);
+ gtk_style_context_save (context);
+ gtk_style_context_add_class (context, GTK_STYLE_CLASS_FRAME);
+
gtk_style_context_get_padding (context, state, &padding);
gtk_style_context_get_border (context, state, &border);
+ gtk_style_context_restore (context);
+
if (priv->shadow_type != GTK_SHADOW_NONE)
{
view_allocation->x = border.left;