File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
lib/js/src/manager/screen/choiceset Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ class _PresentChoiceSetOperation extends _Task {
306306 } else if ( onKeyboardInput . getEvent ( ) === KeyboardEvent . ENTRY_ABORTED || onKeyboardInput . getEvent ( ) === KeyboardEvent . ENTRY_CANCELLED ) {
307307 // notify of abort / cancelation
308308 this . _keyboardListener . onKeyboardDidAbortWithReason ( onKeyboardInput . getEvent ( ) ) ;
309- } else if ( onKeyboardInput . getEvent ( ) . equals ( KeyboardEvent . INPUT_KEY_MASK_ENABLED ) || onKeyboardInput . getEvent ( ) . equals ( KeyboardEvent . INPUT_KEY_MASK_DISABLED ) ) {
309+ } else if ( onKeyboardInput . getEvent ( ) === KeyboardEvent . INPUT_KEY_MASK_ENABLED || onKeyboardInput . getEvent ( ) === KeyboardEvent . INPUT_KEY_MASK_DISABLED ) {
310310 this . _keyboardListener . onKeyboardInputMaskHasChanged ( onKeyboardInput . getEvent ( ) ) ;
311311 }
312312 } ;
Original file line number Diff line number Diff line change @@ -249,6 +249,8 @@ class _PresentKeyboardOperation extends _Task {
249249 } else if ( onKeyboardInput . getEvent ( ) === KeyboardEvent . ENTRY_ABORTED || onKeyboardInput . getEvent ( ) === KeyboardEvent . ENTRY_CANCELLED ) {
250250 // notify of abort / cancelation
251251 this . _keyboardListener . onKeyboardDidAbortWithReason ( onKeyboardInput . getEvent ( ) ) ;
252+ } else if ( onKeyboardInput . getEvent ( ) === KeyboardEvent . INPUT_KEY_MASK_ENABLED || onKeyboardInput . getEvent ( ) === KeyboardEvent . INPUT_KEY_MASK_DISABLED ) {
253+ this . _keyboardListener . onKeyboardInputMaskHasChanged ( onKeyboardInput . getEvent ( ) ) ;
252254 }
253255 } ;
254256
You can’t perform that action at this time.
0 commit comments