Last active
January 14, 2020 12:41
-
-
Save oKcerG/272ef61c6027c022ff1d2418baad5a47 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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