mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-11 04:02:40 -03:00
#431 Set minimum height of FileList to prevent resize bug affecting scrolling/visibility of bottom rows
This commit is contained in:
parent
9910ea5c72
commit
17ba97becc
1 changed files with 1 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue