mirror of
https://github.com/onionshare/onionshare.git
synced 2025-07-31 02:19:09 -04: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.setAcceptDrops(True)
|
||||||
self.setIconSize(QtCore.QSize(32, 32))
|
self.setIconSize(QtCore.QSize(32, 32))
|
||||||
self.setSortingEnabled(True)
|
self.setSortingEnabled(True)
|
||||||
|
self.setMinimumHeight(200)
|
||||||
self.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection)
|
self.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection)
|
||||||
|
|
||||||
class DropHereLabel(QtWidgets.QLabel):
|
class DropHereLabel(QtWidgets.QLabel):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue