1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 13:50:04 -04:00

Added support for 20 fn keys (#1665)

This commit is contained in:
sy1ntexx
2022-05-23 18:49:48 +03:00
committed by GitHub
parent f2dcdfc22c
commit f5cca2a288
3 changed files with 64 additions and 0 deletions

View File

@@ -498,6 +498,28 @@ pub enum Key {
X,
Y,
Z, // Used for cmd+Z (undo)
// The function keys:
F1,
F2,
F3,
F4,
F5,
F6,
F7,
F8,
F9,
F10,
F11,
F12,
F13,
F14,
F15,
F16,
F17,
F18,
F19,
F20,
}
impl RawInput {