mirror of
https://github.com/QuasarApp/ViewSolutions.git
synced 2025-05-05 22:19:44 +00:00
fix activity processor
This commit is contained in:
parent
13a97d860c
commit
7dc8e89946
@ -16,6 +16,7 @@ Pane {
|
|||||||
property alias initialItem: stackView.initialItem
|
property alias initialItem: stackView.initialItem
|
||||||
property alias currentItem: stackView.currentItem
|
property alias currentItem: stackView.currentItem
|
||||||
property alias titlesAligh: headerView.titlesAligh
|
property alias titlesAligh: headerView.titlesAligh
|
||||||
|
property alias depth: stackView.depth
|
||||||
property bool cache: true
|
property bool cache: true
|
||||||
property bool enableHeader: true
|
property bool enableHeader: true
|
||||||
|
|
||||||
@ -52,6 +53,8 @@ Pane {
|
|||||||
}
|
}
|
||||||
|
|
||||||
contentItem: StackView {
|
contentItem: StackView {
|
||||||
|
id: stackView
|
||||||
|
|
||||||
Connections {
|
Connections {
|
||||||
target: (stackView.currentItem && stackView.currentItem.finish)? stackView.currentItem : null
|
target: (stackView.currentItem && stackView.currentItem.finish)? stackView.currentItem : null
|
||||||
|
|
||||||
@ -61,7 +64,6 @@ Pane {
|
|||||||
}
|
}
|
||||||
|
|
||||||
padding: 0
|
padding: 0
|
||||||
id: stackView
|
|
||||||
|
|
||||||
implicitWidth: (stackView.currentItem)? stackView.currentItem.implicitWidth: 0
|
implicitWidth: (stackView.currentItem)? stackView.currentItem.implicitWidth: 0
|
||||||
implicitHeight: (stackView.currentItem)? stackView.currentItem.implicitHeight: 0
|
implicitHeight: (stackView.currentItem)? stackView.currentItem.implicitHeight: 0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user