Performs a modifier key release. Releasing a non-depressed modifier key will yield undefined behaviour. @param key @return A self reference.
(CharSequence key)
| 101 | * @return A self reference. |
| 102 | */ |
| 103 | public Actions keyUp(CharSequence key) { |
| 104 | return addKeyAction(key, codePoint -> tick(getActiveKeyboard().createKeyUp(codePoint))); |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Performs a modifier key release after focusing on an element. Equivalent to: |