Increase the MinimumHeight of the FileList widget to avoid disappearing icons

This commit is contained in:
Miguel Jacq 2018-02-18 16:22:04 +11:00
parent 7e31f7b989
commit 22579a6ae1

View File

@ -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 = []