Fix return to home on idle
This commit is contained in:
parent
6a7416cc85
commit
e83a6e0711
@ -94,15 +94,6 @@ Page {
|
|||||||
root.currentViewIndex = currentIndex
|
root.currentViewIndex = currentIndex
|
||||||
}
|
}
|
||||||
|
|
||||||
opacity: 0
|
|
||||||
Behavior on opacity { NumberAnimation { duration: 300 } }
|
|
||||||
Connections {
|
|
||||||
target: engine.deviceManager
|
|
||||||
onFetchingDataChanged: {
|
|
||||||
swipeView.opacity = engine.deviceManager.fetchingData ? 0 : 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Component {
|
Component {
|
||||||
id: favoritesViewComponent
|
id: favoritesViewComponent
|
||||||
FavoritesView {
|
FavoritesView {
|
||||||
@ -223,15 +214,6 @@ Page {
|
|||||||
root.tabsReady = true
|
root.tabsReady = true
|
||||||
}
|
}
|
||||||
|
|
||||||
opacity: 0
|
|
||||||
Behavior on opacity { NumberAnimation { duration: 300 } }
|
|
||||||
Connections {
|
|
||||||
target: engine.deviceManager
|
|
||||||
onFetchingDataChanged: {
|
|
||||||
tabBar.opacity = engine.deviceManager.fetchingData ? 0 : 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Component {
|
Component {
|
||||||
id: tabEntryComponent
|
id: tabEntryComponent
|
||||||
MainPageTabButton {
|
MainPageTabButton {
|
||||||
|
|||||||
Reference in New Issue
Block a user