initial stab on debugging the tabs crash
This commit is contained in:
parent
4e11026ea4
commit
ea672abae6
@ -70,12 +70,9 @@ Item {
|
|||||||
id: mainRepeater
|
id: mainRepeater
|
||||||
model: tabModel
|
model: tabModel
|
||||||
|
|
||||||
delegate: StackView {
|
delegate: Item {
|
||||||
id: pageStack
|
|
||||||
height: swipeView.height
|
height: swipeView.height
|
||||||
width: swipeView.width
|
width: swipeView.width
|
||||||
objectName: "pageStack"
|
|
||||||
initialItem: Page {}
|
|
||||||
|
|
||||||
property var tabSettings: Settings {
|
property var tabSettings: Settings {
|
||||||
category: "tabSettings" + index
|
category: "tabSettings" + index
|
||||||
@ -103,6 +100,13 @@ Item {
|
|||||||
value: engine.connection.currentHost === null
|
value: engine.connection.currentHost === null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
StackView {
|
||||||
|
id: pageStack
|
||||||
|
objectName: "pageStack"
|
||||||
|
anchors.fill: parent
|
||||||
|
initialItem: Page {}
|
||||||
|
}
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
setupPushNotifications();
|
setupPushNotifications();
|
||||||
if (autoConnectHost.length > 0) {
|
if (autoConnectHost.length > 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user