Fix QML glitches and crash on iOS (#658)
Fix QML glitches and crash on iOS and Android
This commit is contained in:
parent
bf901631bf
commit
bb7b64fb96
3 changed files with 4 additions and 4 deletions
|
|
@ -165,7 +165,7 @@ PageType {
|
|||
expandedContent: Item {
|
||||
id: serverMenuContainer
|
||||
|
||||
implicitHeight: root.height * 0.9
|
||||
implicitHeight: Qt.platform.os !== "ios" ? root.height * 0.9 : screen.height * 0.77
|
||||
|
||||
Component.onCompleted: {
|
||||
drawer.expandedHeight = serverMenuContainer.implicitHeight
|
||||
|
|
@ -252,7 +252,7 @@ PageType {
|
|||
model: SortFilterProxyModel {
|
||||
id: proxyDefaultServerContainersModel
|
||||
sourceModel: DefaultServerContainersModel
|
||||
|
||||
|
||||
sorters: [
|
||||
RoleSorter { roleName: "isInstalled"; sortOrder: Qt.DescendingOrder }
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue