[gimp] plug-ins: set a minimum height on the unit editor's scrolled window



commit 08a31a01f83b04342c580af45ad4c6c7aa142ee0
Author: Michael Natterer <mitch gimp org>
Date:   Sat Jan 5 14:15:01 2019 +0100

    plug-ins: set a minimum height on the unit editor's scrolled window

 plug-ins/common/unit-editor.c | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/plug-ins/common/unit-editor.c b/plug-ins/common/unit-editor.c
index 7c41c27344..de0977e6cc 100644
--- a/plug-ins/common/unit-editor.c
+++ b/plug-ins/common/unit-editor.c
@@ -456,6 +456,7 @@ unit_editor_dialog (void)
   gtk_widget_show (toolbar);
 
   scrolled_win = gtk_scrolled_window_new (NULL, NULL);
+  gtk_widget_set_size_request (scrolled_win, -1, 200);
   gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolled_win),
                                        GTK_SHADOW_IN);
   gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_win),


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]