mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2025-09-06 02:32:44 +00:00
Added debug page, fix RemoteImage on covers
This commit is contained in:
parent
eda4994aac
commit
5ddd5e8e2e
12 changed files with 112 additions and 123 deletions
|
@ -36,7 +36,9 @@ SilicaItem {
|
|||
|
||||
property var __parentPage : null
|
||||
property bool _alreadyLoaded: false
|
||||
readonly property bool _shouldLoad: _alreadyLoaded || __parentPage && [PageStatus.Active, PageStatus.Deactivating].indexOf(__parentPage.status) >= 0
|
||||
readonly property bool _shouldLoad: _alreadyLoaded
|
||||
|| __parentPage == null // Not an indirect child of a page. Immediatly start loading.
|
||||
|| __parentPage && [PageStatus.Active, PageStatus.Deactivating].indexOf(__parentPage.status) >= 0
|
||||
|
||||
onSourceChanged: _alreadyLoaded = false
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue