diff options
| author | 2020-11-24 00:17:30 +0100 | |
|---|---|---|
| committer | 2020-11-24 00:17:30 +0100 | |
| commit | 5615643c5200ec98c5bb8ca992a67697d212ef5d (patch) | |
| tree | d94fda43e3c7037208caf7645f9a9313b6aa02c4 /examples/game_of_life | |
| parent | ea1a7248d257c7c9e4a1f3989e68b58a6bc0c4ff (diff) | |
| parent | 1916755b6b3f84329c3e3f3e9a4e1b6d2b4e45a4 (diff) | |
| download | iced-5615643c5200ec98c5bb8ca992a67697d212ef5d.tar.gz iced-5615643c5200ec98c5bb8ca992a67697d212ef5d.tar.bz2 iced-5615643c5200ec98c5bb8ca992a67697d212ef5d.zip | |
Merge pull request #628 from hecrj/improvement/float-border-radius
Use `f32` for `border_width` and `border_radius`
Diffstat (limited to 'examples/game_of_life')
| -rw-r--r-- | examples/game_of_life/src/style.rs | 18 | 
1 files changed, 9 insertions, 9 deletions
| diff --git a/examples/game_of_life/src/style.rs b/examples/game_of_life/src/style.rs index 308ce43c..6605826f 100644 --- a/examples/game_of_life/src/style.rs +++ b/examples/game_of_life/src/style.rs @@ -44,7 +44,7 @@ impl button::StyleSheet for Button {      fn active(&self) -> button::Style {          button::Style {              background: Some(Background::Color(ACTIVE)), -            border_radius: 3, +            border_radius: 3.0,              text_color: Color::WHITE,              ..button::Style::default()          } @@ -60,7 +60,7 @@ impl button::StyleSheet for Button {      fn pressed(&self) -> button::Style {          button::Style { -            border_width: 1, +            border_width: 1.0,              border_color: Color::WHITE,              ..self.hovered()          } @@ -73,7 +73,7 @@ impl button::StyleSheet for Clear {      fn active(&self) -> button::Style {          button::Style {              background: Some(Background::Color(DESTRUCTIVE)), -            border_radius: 3, +            border_radius: 3.0,              text_color: Color::WHITE,              ..button::Style::default()          } @@ -92,7 +92,7 @@ impl button::StyleSheet for Clear {      fn pressed(&self) -> button::Style {          button::Style { -            border_width: 1, +            border_width: 1.0,              border_color: Color::WHITE,              ..self.hovered()          } @@ -106,9 +106,9 @@ impl slider::StyleSheet for Slider {          slider::Style {              rail_colors: (ACTIVE, Color { a: 0.1, ..ACTIVE }),              handle: slider::Handle { -                shape: slider::HandleShape::Circle { radius: 9 }, +                shape: slider::HandleShape::Circle { radius: 9.0 },                  color: ACTIVE, -                border_width: 0, +                border_width: 0.0,                  border_color: Color::TRANSPARENT,              },          } @@ -146,7 +146,7 @@ impl pick_list::StyleSheet for PickList {          pick_list::Menu {              text_color: Color::WHITE,              background: BACKGROUND.into(), -            border_width: 1, +            border_width: 1.0,              border_color: Color {                  a: 0.7,                  ..Color::BLACK @@ -164,12 +164,12 @@ impl pick_list::StyleSheet for PickList {          pick_list::Style {              text_color: Color::WHITE,              background: BACKGROUND.into(), -            border_width: 1, +            border_width: 1.0,              border_color: Color {                  a: 0.6,                  ..Color::BLACK              }, -            border_radius: 2, +            border_radius: 2.0,              icon_size: 0.5,          }      } | 
