diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2021-12-10 11:19:10 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2021-12-10 11:19:10 +0800 |
commit | 753ae7403fb333f6b2edf44ddae1d67135ed9e28 (patch) | |
tree | 2ba932ad1b0531a0e311ec61de3ad92b00a2a7bf /doc/classes | |
parent | 5ad9d8bad69309d71ea55f3d799af7e3711dc262 (diff) |
Add drag start/end signals for Slider
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Slider.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/classes/Slider.xml b/doc/classes/Slider.xml index 41ceb7b8b3..9ef48afffc 100644 --- a/doc/classes/Slider.xml +++ b/doc/classes/Slider.xml @@ -25,4 +25,17 @@ If [code]true[/code], the slider will display ticks for minimum and maximum values. </member> </members> + <signals> + <signal name="drag_ended"> + <argument index="0" name="value_changed" type="bool" /> + <description> + Emitted when dragging stops. If [code]value_changed[/code] is true, [member Range.value] is different from the value when you started the dragging. + </description> + </signal> + <signal name="drag_started"> + <description> + Emitted when dragging is started. + </description> + </signal> + </signals> </class> |