summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-04-16 23:48:15 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-04-17 10:57:36 -0400
commitedae2a8dc500b7af29928e5eb6dfc305726ce6e0 (patch)
tree4cb9dca82557d64b14b9f0e7d8cfe8e9498958cb /examples
parentffbc58d328ae442a1ecfeaa38eaf7841f307d250 (diff)
downloadgtk+-edae2a8dc500b7af29928e5eb6dfc305726ce6e0.tar.gz
frame: Drop shadow-type
Frames that don't draw frames are not very useful, so just drop the shadow-type property.
Diffstat (limited to 'examples')
-rw-r--r--examples/drawing.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/drawing.c b/examples/drawing.c
index f5315aebb7..37c439c904 100644
--- a/examples/drawing.c
+++ b/examples/drawing.c
@@ -143,7 +143,6 @@ activate (GtkApplication *app,
g_signal_connect (window, "destroy", G_CALLBACK (close_window), NULL);
frame = gtk_frame_new (NULL);
- gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN);
gtk_container_add (GTK_CONTAINER (window), frame);
drawing_area = gtk_drawing_area_new ();