2018-08-10 10:58:53 +00:00
|
|
|
import QtQuick 2.9
|
|
|
|
import QtQuick.Controls 2.2
|
|
|
|
|
|
|
|
Page {
|
|
|
|
property alias lazyLoad: lazyLoadSwitch.checked
|
|
|
|
|
|
|
|
Column {
|
|
|
|
Switch {
|
|
|
|
id: lazyLoadSwitch
|
|
|
|
text: "Lazy Load at Initial Sync"
|
|
|
|
}
|
2018-08-13 14:44:32 +00:00
|
|
|
Button {
|
|
|
|
text: "Invoke GC"
|
|
|
|
highlighted: true
|
|
|
|
onClicked: gc()
|
|
|
|
}
|
2018-08-10 10:58:53 +00:00
|
|
|
}
|
|
|
|
}
|