Merge pull request #1797 from bbb651/master

Make mouse::Button::Other take u16 instead of u8
This commit is contained in:
Héctor Ramón 2023-05-23 02:52:14 +02:00 committed by GitHub
commit e31582e59e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View file

@ -11,5 +11,5 @@ pub enum Button {
Middle,
/// Some other button.
Other(u8),
Other(u16),
}