Make KeyboardKey a non-exhaustive enum to avoid crashes with unmapped keys. (#319)
Make KeyboardKey a non-exhaustive enum
This commit is contained in:
parent
9d9daa7127
commit
67d4311b42
2 changed files with 2 additions and 0 deletions
|
|
@ -1839,6 +1839,7 @@ pub const KeyboardKey = enum(c_int) {
|
||||||
//menu = 82,
|
//menu = 82,
|
||||||
volume_up = 24,
|
volume_up = 24,
|
||||||
volume_down = 25,
|
volume_down = 25,
|
||||||
|
_,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const MouseButton = enum(c_int) {
|
pub const MouseButton = enum(c_int) {
|
||||||
|
|
|
||||||
|
|
@ -1839,6 +1839,7 @@ pub const KeyboardKey = enum(c_int) {
|
||||||
//menu = 82,
|
//menu = 82,
|
||||||
volume_up = 24,
|
volume_up = 24,
|
||||||
volume_down = 25,
|
volume_down = 25,
|
||||||
|
_,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const MouseButton = enum(c_int) {
|
pub const MouseButton = enum(c_int) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue