diff options
author | 2020-08-10 23:57:29 +0200 | |
---|---|---|
committer | 2020-08-10 23:57:29 +0200 | |
commit | 00d66da0cee1dc7faeccc5b3f0794a0393a38da7 (patch) | |
tree | f8a27b7d2efdfa2321d17d58f8268f1a8a5810f4 /examples/game_of_life | |
parent | 9ba4cfd23f4620bab93df9616617643604db2c79 (diff) | |
download | iced-00d66da0cee1dc7faeccc5b3f0794a0393a38da7.tar.gz iced-00d66da0cee1dc7faeccc5b3f0794a0393a38da7.tar.bz2 iced-00d66da0cee1dc7faeccc5b3f0794a0393a38da7.zip |
Add `Keyboard` variant to `canvas::Event`
Diffstat (limited to 'examples/game_of_life')
-rw-r--r-- | examples/game_of_life/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/game_of_life/src/main.rs b/examples/game_of_life/src/main.rs index c934467d..2addd950 100644 --- a/examples/game_of_life/src/main.rs +++ b/examples/game_of_life/src/main.rs @@ -413,6 +413,7 @@ mod grid { }, _ => None, }, + _ => None, } } |