diff options
author | 2021-07-22 20:13:14 +0700 | |
---|---|---|
committer | 2021-07-22 20:22:32 +0700 | |
commit | 1b3606884747374f1e5599e3c783f36a2f2cac6f (patch) | |
tree | 77f8b39ff3b9ce0f3321cc5f58d10b27d61b96f8 /examples/game_of_life | |
parent | 26b2a824a930b8f98f4510aa2d2f3aaef7b669b9 (diff) | |
download | iced-1b3606884747374f1e5599e3c783f36a2f2cac6f.tar.gz iced-1b3606884747374f1e5599e3c783f36a2f2cac6f.tar.bz2 iced-1b3606884747374f1e5599e3c783f36a2f2cac6f.zip |
Introduce `placeholder_color` to `pick_list::Style`
Diffstat (limited to 'examples/game_of_life')
-rw-r--r-- | examples/game_of_life/src/style.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/game_of_life/src/style.rs b/examples/game_of_life/src/style.rs index 6605826f..be9a0e96 100644 --- a/examples/game_of_life/src/style.rs +++ b/examples/game_of_life/src/style.rs @@ -171,6 +171,7 @@ impl pick_list::StyleSheet for PickList { }, border_radius: 2.0, icon_size: 0.5, + ..pick_list::Style::default() } } |