diff options
| author | Jules Aguillon | 2022-03-19 16:27:57 +0100 |
|---|---|---|
| committer | Jules Aguillon | 2022-03-19 16:27:57 +0100 |
| commit | ba6d62dee2a1c0dae63eb758551b089a7cd9ffc1 (patch) | |
| tree | 85a271c17ed1f8ab4eb7f14091ebcaada43ad099 /srcs/juloo.keyboard2/KeyValue.java | |
| parent | e872c5878874bdd035b9ca870853068a53cfc002 (diff) | |
| download | unexpected-keyboard-ba6d62dee2a1c0dae63eb758551b089a7cd9ffc1.tar.gz unexpected-keyboard-ba6d62dee2a1c0dae63eb758551b089a7cd9ffc1.zip | |
Add F11 and F12
These keys are shown only when Fn is activated, "placeholder" keys are
placed in the layouts.
Diffstat (limited to 'srcs/juloo.keyboard2/KeyValue.java')
| -rw-r--r-- | srcs/juloo.keyboard2/KeyValue.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/srcs/juloo.keyboard2/KeyValue.java b/srcs/juloo.keyboard2/KeyValue.java index 450f585..f290709 100644 --- a/srcs/juloo.keyboard2/KeyValue.java +++ b/srcs/juloo.keyboard2/KeyValue.java @@ -259,6 +259,8 @@ class KeyValue addEventKey("f8", "F8", KeyEvent.KEYCODE_F8); addEventKey("f9", "F9", KeyEvent.KEYCODE_F9); addEventKey("f10", "F10", KeyEvent.KEYCODE_F10); + addEventKey("f11", "F11", KeyEvent.KEYCODE_F11, FLAG_SMALLER_FONT); + addEventKey("f12", "F12", KeyEvent.KEYCODE_F12, FLAG_SMALLER_FONT); addEventKey("tab", "↹", KeyEvent.KEYCODE_TAB); addKey("\\t", "\\t", '\t', EVENT_NONE, 0); // Send the tab character |
