Fix default insets on Qt6.7 in room and communities list

This commit is contained in:
Nicolas Werner 2024-09-09 23:30:17 +02:00
parent 1baf583f15
commit 25e552c6fa
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
2 changed files with 10 additions and 0 deletions

View file

@ -61,6 +61,11 @@ Page {
state: "normal"
width: ListView.view.width - ((scrollbar.interactive && scrollbar.visible && scrollbar.parent) ? scrollbar.width : 0)
topInset: 0
bottomInset: 0
leftInset: 0
rightInset: 0
background: Rectangle {
color: communityItem.backgroundColor
}

View file

@ -477,6 +477,11 @@ Page {
state: "normal"
width: ListView.view.width - ((scrollbar.interactive && scrollbar.visible && scrollbar.parent) ? scrollbar.width : 0)
topInset: 0
bottomInset: 0
leftInset: 0
rightInset: 0
background: Rectangle {
color: backgroundColor
}