app/tools: fix the resize behaviour of the curves tool dialog.

This commit is contained in:
Simon Budig 2018-05-03 02:40:28 +02:00 committed by Michael Natterer
parent 4bf50c23ea
commit 4cac8373ff
1 changed files with 2 additions and 0 deletions

View File

@ -483,6 +483,8 @@ gimp_curves_tool_dialog (GimpFilterTool *filter_tool)
/* The curves graph */
frame = gtk_frame_new (NULL);
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN);
gtk_widget_set_hexpand (frame, TRUE);
gtk_widget_set_vexpand (frame, TRUE);
gtk_grid_attach (GTK_GRID (grid), frame, 1, 0, 1, 1);
gtk_widget_show (frame);