mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Fix crash on some systems because of reuseItems in completer
This commit is contained in:
parent
74712ff6aa
commit
051545a851
1 changed files with 2 additions and 1 deletions
|
@ -115,7 +115,8 @@ Control {
|
||||||
|
|
||||||
onContentYChanged: deadTimer.restart()
|
onContentYChanged: deadTimer.restart()
|
||||||
|
|
||||||
reuseItems: true
|
// Broken, see https://bugreports.qt.io/browse/QTBUG-102811
|
||||||
|
//reuseItems: true
|
||||||
implicitWidth: listView.contentItem.childrenRect.width
|
implicitWidth: listView.contentItem.childrenRect.width
|
||||||
model: completer
|
model: completer
|
||||||
verticalLayoutDirection: popup.bottomToTop ? ListView.BottomToTop : ListView.TopToBottom
|
verticalLayoutDirection: popup.bottomToTop ? ListView.BottomToTop : ListView.TopToBottom
|
||||||
|
|
Loading…
Reference in a new issue