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

pull/1815/head
Nicolas Werner 2 months ago
parent 1baf583f15
commit 25e552c6fa
No known key found for this signature in database
GPG Key ID: C8D75E610773F2D9
  1. 5
      resources/qml/CommunitiesList.qml
  2. 5
      resources/qml/RoomList.qml

@ -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
}

@ -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
}

Loading…
Cancel
Save