Merge PR #142: Fix return to home on idle

This commit is contained in:
Jenkins 2019-02-05 23:11:54 +01:00
commit 9d124e1bb4

View File

@ -94,15 +94,6 @@ Page {
root.currentViewIndex = currentIndex
}
opacity: 0
Behavior on opacity { NumberAnimation { duration: 300 } }
Connections {
target: engine.deviceManager
onFetchingDataChanged: {
swipeView.opacity = engine.deviceManager.fetchingData ? 0 : 1
}
}
Component {
id: favoritesViewComponent
FavoritesView {
@ -223,15 +214,6 @@ Page {
root.tabsReady = true
}
opacity: 0
Behavior on opacity { NumberAnimation { duration: 300 } }
Connections {
target: engine.deviceManager
onFetchingDataChanged: {
tabBar.opacity = engine.deviceManager.fetchingData ? 0 : 1
}
}
Component {
id: tabEntryComponent
MainPageTabButton {