diff options
Diffstat (limited to 'widget/src/vertical_slider.rs')
-rw-r--r-- | widget/src/vertical_slider.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/widget/src/vertical_slider.rs b/widget/src/vertical_slider.rs index 06c27752..8f7c88da 100644 --- a/widget/src/vertical_slider.rs +++ b/widget/src/vertical_slider.rs @@ -106,7 +106,8 @@ where } /// Sets the optional default value for the [`VerticalSlider`]. - /// If set, [`VerticalSlider`] will reset to this value when doubled-clicked, ctrl-clicked, or command-clicked. + /// + /// If set, the [`VerticalSlider`] will reset to this value when ctrl-clicked or command-clicked. pub fn default(mut self, default: impl Into<T>) -> Self { self.default = Some(default.into()); self |