Merge pull request #244 from a-kenji/main
Fix(Mouse): Remove unimplemented! Macro for Mouse
This commit is contained in:
commit
9cb2b727cb
1 changed files with 2 additions and 1 deletions
|
|
@ -81,7 +81,8 @@ impl InputHandler {
|
|||
}
|
||||
termion::event::Event::Mouse(_)
|
||||
| termion::event::Event::Unsupported(_) => {
|
||||
unimplemented!("Mouse and unsupported events aren't supported!");
|
||||
// Mouse and unsupported events aren't implemented yet,
|
||||
// use a NoOp untill then.
|
||||
}
|
||||
},
|
||||
Err(err) => panic!("Encountered read error: {:?}", err),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue