diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2011-01-17 03:58:45 +0100 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2011-01-17 04:43:52 +0100 |
commit | 62fd79b2247eb67fafee19fbeedab7fc52ac8314 (patch) | |
tree | b2f84212608966732e6317b534f239913218321f /gtk/gtkspinbutton.c | |
parent | f482d4dc89b9cb75bf1fab539d1f7b065c494baa (diff) | |
download | gtk+-62fd79b2247eb67fafee19fbeedab7fc52ac8314.tar.gz |
Do not set junction sides to the entry frame in spinbuttons.
That's meant to be the outer frame, so no junction sides apply there
Diffstat (limited to 'gtk/gtkspinbutton.c')
-rw-r--r-- | gtk/gtkspinbutton.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gtk/gtkspinbutton.c b/gtk/gtkspinbutton.c index 65b4e2ee35..5ba8036d47 100644 --- a/gtk/gtkspinbutton.c +++ b/gtk/gtkspinbutton.c @@ -923,11 +923,6 @@ gtk_spin_button_draw (GtkWidget *widget, context = gtk_widget_get_style_context (widget); gtk_style_context_save (context); - if (is_rtl) - gtk_style_context_set_junction_sides (context, GTK_JUNCTION_LEFT); - else - gtk_style_context_set_junction_sides (context, GTK_JUNCTION_RIGHT); - GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->draw (widget, cr); gtk_style_context_restore (context); |