mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-24 03:58:49 +03:00
Fix default insets on Qt6.7 in room and communities list
This commit is contained in:
parent
1baf583f15
commit
25e552c6fa
2 changed files with 10 additions and 0 deletions
|
@ -61,6 +61,11 @@ Page {
|
||||||
state: "normal"
|
state: "normal"
|
||||||
width: ListView.view.width - ((scrollbar.interactive && scrollbar.visible && scrollbar.parent) ? scrollbar.width : 0)
|
width: ListView.view.width - ((scrollbar.interactive && scrollbar.visible && scrollbar.parent) ? scrollbar.width : 0)
|
||||||
|
|
||||||
|
topInset: 0
|
||||||
|
bottomInset: 0
|
||||||
|
leftInset: 0
|
||||||
|
rightInset: 0
|
||||||
|
|
||||||
background: Rectangle {
|
background: Rectangle {
|
||||||
color: communityItem.backgroundColor
|
color: communityItem.backgroundColor
|
||||||
}
|
}
|
||||||
|
|
|
@ -477,6 +477,11 @@ Page {
|
||||||
state: "normal"
|
state: "normal"
|
||||||
width: ListView.view.width - ((scrollbar.interactive && scrollbar.visible && scrollbar.parent) ? scrollbar.width : 0)
|
width: ListView.view.width - ((scrollbar.interactive && scrollbar.visible && scrollbar.parent) ? scrollbar.width : 0)
|
||||||
|
|
||||||
|
topInset: 0
|
||||||
|
bottomInset: 0
|
||||||
|
leftInset: 0
|
||||||
|
rightInset: 0
|
||||||
|
|
||||||
background: Rectangle {
|
background: Rectangle {
|
||||||
color: backgroundColor
|
color: backgroundColor
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue