From 22579a6ae12afbbd3c981031a6d80c1bf4839340 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Sun, 18 Feb 2018 16:22:04 +1100 Subject: [PATCH] Increase the MinimumHeight of the FileList widget to avoid disappearing icons --- onionshare_gui/file_selection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionshare_gui/file_selection.py b/onionshare_gui/file_selection.py index ba3df69d..6a9d2e21 100644 --- a/onionshare_gui/file_selection.py +++ b/onionshare_gui/file_selection.py @@ -79,7 +79,7 @@ class FileList(QtWidgets.QListWidget): self.setAcceptDrops(True) self.setIconSize(QtCore.QSize(32, 32)) self.setSortingEnabled(True) - self.setMinimumHeight(200) + self.setMinimumHeight(205) self.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection) self.filenames = []