diff options
author | 2023-03-01 21:41:32 +0100 | |
---|---|---|
committer | 2023-03-01 21:41:32 +0100 | |
commit | 5c0427edbb4358896412c736af2f441c12601d1b (patch) | |
tree | 834b862f5358a786a8831fcc75812f36ec430573 /examples/game_of_life | |
parent | 5fd5d1cdf8e5354788dc40729c4565ef377d3bba (diff) | |
download | iced-5c0427edbb4358896412c736af2f441c12601d1b.tar.gz iced-5c0427edbb4358896412c736af2f441c12601d1b.tar.bz2 iced-5c0427edbb4358896412c736af2f441c12601d1b.zip |
Fix `Clip` primitive translation in `iced_tiny_skia`
Diffstat (limited to 'examples/game_of_life')
-rw-r--r-- | examples/game_of_life/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/game_of_life/src/main.rs b/examples/game_of_life/src/main.rs index 494f71a6..cdb33aca 100644 --- a/examples/game_of_life/src/main.rs +++ b/examples/game_of_life/src/main.rs @@ -145,7 +145,7 @@ impl Application for GameOfLife { self.grid .view() .map(move |message| Message::Grid(message, version)), - controls + controls, ]; container(content) |