diff options
Diffstat (limited to 'core/src/shadow.rs')
-rw-r--r-- | core/src/shadow.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/shadow.rs b/core/src/shadow.rs index 238ea36a..de8ce1c3 100644 --- a/core/src/shadow.rs +++ b/core/src/shadow.rs @@ -2,7 +2,7 @@ use crate::{Color, Vector}; /// A shadow -#[derive(Debug, Clone, Copy, PartialEq, Default)] +#[derive(Debug, Clone, Copy, PartialEq)] pub struct Shadow { /// The color of the shadow pub color: Color, @@ -10,6 +10,6 @@ pub struct Shadow { /// The offset of the shadow pub offset: Vector, - /// The blur_radius of the shadow + /// The blur radius of the shadow pub blur_radius: f32, } |