]> Pileus Git - ~andy/gtk/commitdiff
gtk: draw the frame around the spinbutton's buttons conditionally
authorMichael Natterer <mitch@gimp.org>
Fri, 19 Nov 2010 13:55:47 +0000 (14:55 +0100)
committerMichael Natterer <mitch@gimp.org>
Fri, 19 Nov 2010 13:55:47 +0000 (14:55 +0100)
(depending on GtkEntry::has-frame)

gtk/gtkspinbutton.c

index e791d79928224c852c9cd5a6d153548d736227d9..a8e0f0833c79a8311ac83adee77672f401875d2b 100644 (file)
@@ -801,12 +801,13 @@ gtk_spin_button_draw (GtkWidget      *widget,
 
   gtk_cairo_transform_to_window (cr, widget, priv->panel);
 
-  gtk_paint_box (gtk_widget_get_style (widget), cr,
-                 state, shadow_type,
-                 widget, "spinbutton",
-                 0, 0,
-                 gdk_window_get_width (priv->panel),
-                 gdk_window_get_height (priv->panel));
+  if (gtk_entry_get_has_frame (GTK_ENTRY (widget)))
+    gtk_paint_box (gtk_widget_get_style (widget), cr,
+                   state, shadow_type,
+                   widget, "spinbutton",
+                   0, 0,
+                   gdk_window_get_width (priv->panel),
+                   gdk_window_get_height (priv->panel));
 
   gtk_spin_button_draw_arrow (spin, cr, GTK_ARROW_UP);
   gtk_spin_button_draw_arrow (spin, cr, GTK_ARROW_DOWN);