Skip to content

Instantly share code, notes, and snippets.

@oKcerG
Last active January 14, 2020 12:41
Show Gist options
  • Save oKcerG/272ef61c6027c022ff1d2418baad5a47 to your computer and use it in GitHub Desktop.
Save oKcerG/272ef61c6027c022ff1d2418baad5a47 to your computer and use it in GitHub Desktop.
import QtQuick 2.9
Binding {
id: root
property int delay: 500
property alias value: root._delayedValue
property alias _actualValue: root.value
property var _delayedValue
on_DelayedValueChanged: timer.restart()
property Timer timer: Timer {
interval: root.delay
onTriggered: root._actualValue = root._delayedValue
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment