#431 Set minimum height of FileList to prevent resize bug affecting scrolling/visibility of bottom rows

This commit is contained in:
Miguel Jacq 2017-12-04 16:39:22 +11:00
parent 9910ea5c72
commit 17ba97becc
No known key found for this signature in database
GPG key ID: EEA4341C6D97A0B6

View file

@ -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):