Force a scrollbar on the file list widget. Not pretty but avoids weird text disappearance on resize when scrollbar otherwise activates

This commit is contained in:
Miguel Jacq 2018-02-22 14:44:00 +11:00
parent 9215651582
commit 6998aec50a
No known key found for this signature in database
GPG key ID: EEA4341C6D97A0B6

View file

@ -86,6 +86,7 @@ class FileList(QtWidgets.QListWidget):
self.drop_here_text = DropHereLabel(self, False)
self.drop_count = DropCountLabel(self)
self.resizeEvent(None)
self.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOn)
self.setStyleSheet('QListWidget::item { color: #000000; font-size: 13px; }')
def update(self):