From 17ba97becc580ad62c1c9c943cd16c370c2c5a73 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Mon, 4 Dec 2017 16:39:22 +1100 Subject: [PATCH] #431 Set minimum height of FileList to prevent resize bug affecting scrolling/visibility of bottom rows --- onionshare_gui/file_selection.py | 1 + 1 file changed, 1 insertion(+) diff --git a/onionshare_gui/file_selection.py b/onionshare_gui/file_selection.py index 391e6a30..54321370 100644 --- a/onionshare_gui/file_selection.py +++ b/onionshare_gui/file_selection.py @@ -35,6 +35,7 @@ class FileList(QtWidgets.QListWidget): self.setAcceptDrops(True) self.setIconSize(QtCore.QSize(32, 32)) self.setSortingEnabled(True) + self.setMinimumHeight(200) self.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection) class DropHereLabel(QtWidgets.QLabel):