Turn off horizontal scrollbar in completer
This commit is contained in:
parent
5a6208862e
commit
6417c7d875
2
TODO
2
TODO
@ -69,8 +69,6 @@ Bugs
|
||||
|
||||
- Tabbar in print dialog has same visual style as main tabbar
|
||||
|
||||
- Sometimes there's a horizontal scrollbar in the completer
|
||||
|
||||
- Eliding doesn't work correctly in tabs (cuts off start)
|
||||
This especially happens when there's no favicon
|
||||
|
||||
|
@ -126,6 +126,7 @@ class CompletionView(QTreeView):
|
||||
self.setIndentation(0)
|
||||
self.setItemsExpandable(False)
|
||||
self.setExpandsOnDoubleClick(False)
|
||||
self.setHorizontalScrollBarPolicy(Qt.ScrollBarAlwaysOff)
|
||||
# QTBUG? This is a workaround for weird race conditions with invalid
|
||||
# item indexes leading to segfaults in Qt.
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user