()
| 254 | } |
| 255 | |
| 256 | _allKeysUp() { |
| 257 | Log.Debug(">> Keyboard.allKeysUp"); |
| 258 | |
| 259 | // Prevent control key being processed after losing focus. |
| 260 | this._interruptAltGrSequence(); |
| 261 | |
| 262 | for (let code in this._keyDownList) { |
| 263 | this._sendKeyEvent(this._keyDownList[code], code, false); |
| 264 | } |
| 265 | Log.Debug("<< Keyboard.allKeysUp"); |
| 266 | } |
| 267 | |
| 268 | // ===== PUBLIC METHODS ===== |
| 269 |
no test coverage detected