summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-10-20 15:50:42 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-10-20 15:50:42 +0700
commit11bcb1342796a6fabc7c5b89a15c22c754b014ce (patch)
treed55c147d35d422b219bd813ec71d49bb09833951 /graphics
parente00a2e9b2d97147be5912a97362d1bf1705b7c4e (diff)
downloadiced-11bcb1342796a6fabc7c5b89a15c22c754b014ce.tar.gz
iced-11bcb1342796a6fabc7c5b89a15c22c754b014ce.tar.bz2
iced-11bcb1342796a6fabc7c5b89a15c22c754b014ce.zip
Wire up styling to `Slider` in `iced_native`
Diffstat (limited to 'graphics')
-rw-r--r--graphics/src/widget/slider.rs21
1 files changed, 1 insertions, 20 deletions
diff --git a/graphics/src/widget/slider.rs b/graphics/src/widget/slider.rs
index 5125d66c..766ecbb6 100644
--- a/graphics/src/widget/slider.rs
+++ b/graphics/src/widget/slider.rs
@@ -1,24 +1,5 @@
//! Display an interactive selector of a single value from a range of values.
//!
//! A [`Slider`] has some local [`State`].
-use crate::{Backend, Renderer};
-use iced_native::slider;
-
-pub use iced_native::slider::State;
+pub use iced_native::slider::{Slider, State};
pub use iced_style::slider::{Handle, HandleShape, Style, StyleSheet};
-
-/// An horizontal bar and a handle that selects a single value from a range of
-/// values.
-///
-/// This is an alias of an `iced_native` slider with an `iced_wgpu::Renderer`.
-pub type Slider<'a, T, Message, Backend> =
- iced_native::Slider<'a, T, Message, Renderer<Backend>>;
-
-impl<B> slider::Renderer for Renderer<B>
-where
- B: Backend,
-{
- type Style = Box<dyn StyleSheet>;
-
- const DEFAULT_HEIGHT: u16 = 22;
-}