You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes, it's useful to have a message fire only when the user has finished changing a parameter. Other widgets like text inputs may also benefit from this functionality, and I'd be happy to implement those as well!
Incorporated the changes you suggested into it; had to make the message impl Clone but I assume that's not a big deal since Button requires it too. Added a bit of an explanation for the on_release message as well; the use case I have is that a long running task (actually a whole thread) is spawned to perform an update to a large amount of data every time the slider is changed. on_change would fire that event every time a mouse position update was detected, and the result was that my app suddenly used 100% of all cores every time the slider was moved. I could've solved this by limiting when the thread could be spawned, but that wasn't exactly the behavior I wanted.
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
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Sometimes, it's useful to have a message fire only when the user has finished changing a parameter. Other widgets like text inputs may also benefit from this functionality, and I'd be happy to implement those as well!