diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-04-16 23:48:15 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-04-17 10:57:36 -0400 |
commit | edae2a8dc500b7af29928e5eb6dfc305726ce6e0 (patch) | |
tree | 4cb9dca82557d64b14b9f0e7d8cfe8e9498958cb /examples | |
parent | ffbc58d328ae442a1ecfeaa38eaf7841f307d250 (diff) | |
download | gtk+-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.c | 1 |
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 (); |