mirror of https://github.com/mpv-player/mpv
input/keycodes: fix typo
This commit is contained in:
parent
0eb5e914d9
commit
4295141703
|
@ -226,12 +226,12 @@
|
||||||
|
|
||||||
// Emit a command even on key-up (normally key-up is ignored). This means by
|
// Emit a command even on key-up (normally key-up is ignored). This means by
|
||||||
// default they binding will be triggered on key-up instead of key-down.
|
// default they binding will be triggered on key-up instead of key-down.
|
||||||
// This is a fixed part of the keycode, not a modifier than can change.
|
// This is a fixed part of the keycode, not a modifier that can change.
|
||||||
#define MP_KEY_EMIT_ON_UP (1u<<22)
|
#define MP_KEY_EMIT_ON_UP (1u<<22)
|
||||||
|
|
||||||
// Use this when the key shouldn't be auto-repeated (like mouse buttons)
|
// Use this when the key shouldn't be auto-repeated (like mouse buttons)
|
||||||
// Also means both key-down key-up events produce emit bound commands.
|
// Also means both key-down key-up events produce emit bound commands.
|
||||||
// This is a fixed part of the keycode, not a modifier than can change.
|
// This is a fixed part of the keycode, not a modifier that can change.
|
||||||
#define MP_NO_REPEAT_KEY (1u<<23)
|
#define MP_NO_REPEAT_KEY (1u<<23)
|
||||||
|
|
||||||
/* Modifiers added to individual keys */
|
/* Modifiers added to individual keys */
|
||||||
|
|
Loading…
Reference in New Issue