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 41b1abdfaa
commit f0b3c25ce4
No known key found for this signature in database
GPG Key ID: EEA4341C6D97A0B6

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