From 60504dac9009dff2dcdb23317ec1e2a97e5325f2 Mon Sep 17 00:00:00 2001 From: itzexor Date: Sat, 20 Feb 2016 16:05:49 -0800 Subject: [PATCH] xed-close-confirmation-dialog: fix scrolledwindow minimum height --- xed/dialogs/xed-close-confirmation-dialog.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xed/dialogs/xed-close-confirmation-dialog.c b/xed/dialogs/xed-close-confirmation-dialog.c index 48c26f7..7219f47 100755 --- a/xed/dialogs/xed-close-confirmation-dialog.c +++ b/xed/dialogs/xed-close-confirmation-dialog.c @@ -704,6 +704,7 @@ build_multiple_docs_dialog (XedCloseConfirmationDialog *dlg) GTK_POLICY_AUTOMATIC); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolledwindow), GTK_SHADOW_IN); + gtk_scrolled_window_set_min_content_height (GTK_SCROLLED_WINDOW (scrolledwindow), 60); treeview = create_treeview (priv); gtk_container_add (GTK_CONTAINER (scrolledwindow), treeview); @@ -752,3 +753,4 @@ xed_close_confirmation_dialog_get_unsaved_documents (XedCloseConfirmationDialog return dlg->priv->unsaved_documents; } +