From 061ad3ebb62de75d84de01f2bb4b221e03da133f Mon Sep 17 00:00:00 2001 From: guinux Date: Fri, 24 Feb 2017 09:20:59 +0100 Subject: [PATCH] fix #208 --- src/transaction.vala | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/transaction.vala b/src/transaction.vala index 6278b45..a235c36 100644 --- a/src/transaction.vala +++ b/src/transaction.vala @@ -208,6 +208,8 @@ namespace Pamac { term_window = new Gtk.ScrolledWindow (null, term.vadjustment); term_window.expand = true; term_window.visible = true; + // height 200 needed for installer + term_window.height_request = 200; term_window.propagate_natural_height = true; term_window.add (term); build_cancellable = new Cancellable ();