summaryrefslogtreecommitdiffstats
path: root/style/src/slider.rs
diff options
context:
space:
mode:
Diffstat (limited to 'style/src/slider.rs')
-rw-r--r--style/src/slider.rs13
1 files changed, 2 insertions, 11 deletions
diff --git a/style/src/slider.rs b/style/src/slider.rs
index 9148fcbe..c6791c3d 100644
--- a/style/src/slider.rs
+++ b/style/src/slider.rs
@@ -79,17 +79,8 @@ impl StyleSheet for Default {
}
}
-impl std::default::Default for Box<dyn StyleSheet> {
+impl std::default::Default for &'static dyn StyleSheet {
fn default() -> Self {
- Box::new(Default)
- }
-}
-
-impl<T> From<T> for Box<dyn StyleSheet>
-where
- T: 'static + StyleSheet,
-{
- fn from(style: T) -> Self {
- Box::new(style)
+ &Default
}
}