fix(AssetsDetailView): fixed warning
This commit is contained in:
parent
28ca3bd075
commit
dd08cb60c2
|
@ -100,7 +100,7 @@ Item {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.fillHeight: true
|
Layout.fillHeight: true
|
||||||
onGoBack: stack.currentIndex = 0
|
onGoBack: stack.currentIndex = 0
|
||||||
visible: (stack.currentTabIndex === 2)
|
visible: (stack.currentIndex === 2)
|
||||||
}
|
}
|
||||||
TransactionDetailView {
|
TransactionDetailView {
|
||||||
id: transactionDetailView
|
id: transactionDetailView
|
||||||
|
|
|
@ -33,7 +33,7 @@ Item {
|
||||||
{text: qsTr("1Y"), enabled: true}, {text: qsTr("ALL"), enabled: true}]
|
{text: qsTr("1Y"), enabled: true}, {text: qsTr("ALL"), enabled: true}]
|
||||||
|
|
||||||
property var simTimer: Timer {
|
property var simTimer: Timer {
|
||||||
running: true
|
running: root.visible
|
||||||
interval: 3000
|
interval: 3000
|
||||||
repeat: true
|
repeat: true
|
||||||
onTriggered: {
|
onTriggered: {
|
||||||
|
|
Loading…
Reference in New Issue