diff -Nru aptdaemon-1.1.1+bzr982/debian/changelog aptdaemon-1.1.1+bzr982/debian/changelog --- aptdaemon-1.1.1+bzr982/debian/changelog 2016-08-17 17:54:52.000000000 +0100 +++ aptdaemon-1.1.1+bzr982/debian/changelog 2016-11-02 17:34:02.000000000 +0000 @@ -1,3 +1,11 @@ +aptdaemon (1.1.1+bzr982-0ubuntu16.16.10.1) yakkety; urgency=medium + + * debian/patches/lp1623856.diff: + - Set a minimum content height of 200px for the download scrolled + window. (LP: #1623856) + + -- Martin Wimpress Wed, 02 Nov 2016 17:30:38 +0000 + aptdaemon (1.1.1+bzr982-0ubuntu16) yakkety; urgency=medium * debian/control: diff -Nru aptdaemon-1.1.1+bzr982/debian/patches/lp1623856.diff aptdaemon-1.1.1+bzr982/debian/patches/lp1623856.diff --- aptdaemon-1.1.1+bzr982/debian/patches/lp1623856.diff 1970-01-01 01:00:00.000000000 +0100 +++ aptdaemon-1.1.1+bzr982/debian/patches/lp1623856.diff 2016-11-02 17:50:23.000000000 +0000 @@ -0,0 +1,16 @@ +Description: Set a minimum content height of 200px for the download +scrolled window. This was the default height gtk3widgets used in GTK +versions prior to 3.20. +Author: Martin Wimpress +Bug: https://bugs.launchpad.net/ubuntu/+source/aptdaemon/+bug/1623856 + +--- a/aptdaemon/gtk3widgets.py ++++ b/aptdaemon/gtk3widgets.py +@@ -338,6 +338,7 @@ + self.download_scrolled.set_policy(Gtk.PolicyType.NEVER, + Gtk.PolicyType.AUTOMATIC) + self.download_scrolled.add(self.download_view) ++ self.download_scrolled.set_min_content_height(200) + hbox = Gtk.HBox() + hbox.pack_start(self.download_scrolled, True, True, 0) + if self.terminal: diff -Nru aptdaemon-1.1.1+bzr982/debian/patches/series aptdaemon-1.1.1+bzr982/debian/patches/series --- aptdaemon-1.1.1+bzr982/debian/patches/series 2016-06-07 01:04:25.000000000 +0100 +++ aptdaemon-1.1.1+bzr982/debian/patches/series 2016-11-02 17:22:30.000000000 +0000 @@ -12,3 +12,4 @@ lp1439769-aptdaemon-autoinstall.patch drop_pkcompat.patch pk1.1.1_compat.patch +lp1623856.diff