diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-03-02 13:43:38 +0200 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-03-02 13:43:38 +0200 |
| commit | f6e4ed5a21280669175a433714c22007e08e7b92 (patch) | |
| tree | c49f4d0d5322da0e895c28e7a4dcb5768e67b0c3 | |
| parent | 508dbe26fe815c9b1273e16b9a9d9a8ddb29f474 (diff) | |
| download | Tango-f6e4ed5a21280669175a433714c22007e08e7b92.tar.gz Tango-f6e4ed5a21280669175a433714c22007e08e7b92.zip | |
Slider. Thumb moves immediately to the location of a mouse click.
Related Work Items: #6228
| -rw-r--r-- | Software/Visual_Studio/Tango.Touch/TouchColorPickerControls/TouchColorPickerSlider.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/TouchColorPickerControls/TouchColorPickerSlider.cs b/Software/Visual_Studio/Tango.Touch/TouchColorPickerControls/TouchColorPickerSlider.cs index 95810992e..7b0f5881a 100644 --- a/Software/Visual_Studio/Tango.Touch/TouchColorPickerControls/TouchColorPickerSlider.cs +++ b/Software/Visual_Studio/Tango.Touch/TouchColorPickerControls/TouchColorPickerSlider.cs @@ -129,6 +129,7 @@ namespace Tango.Touch.Controls TouchDown -= TouchDownSlider; TouchDown += TouchDownSlider; OnValueChanged(Double.NaN, Value); + IsMoveToPointEnabled = true; } private void TouchDownSlider(object sender, TouchEventArgs e) |
