Spectral/qml/form/SettingGeneralForm.qml

19 lines
348 B
QML
Raw Normal View History

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"
}
Button {
text: "Invoke GC"
highlighted: true
onClicked: gc()
}
}
}