Issue #2986 - Input controller configuration window is too small by default

Set a minimum size on the event list's scrolled window.
This commit is contained in:
Michael Natterer 2019-05-29 23:35:13 +02:00
parent 04b69e2494
commit 476cf19747
1 changed files with 1 additions and 0 deletions

View File

@ -281,6 +281,7 @@ gimp_controller_editor_constructed (GObject *object)
sw = gtk_scrolled_window_new (NULL, NULL);
gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw),
GTK_SHADOW_IN);
gtk_widget_set_size_request (sw, 400, 300);
gtk_container_add (GTK_CONTAINER (sw), tv);
gtk_widget_show (tv);