Explorar el Código

Adding reference to button target when notifying observers of onKeyboardEventProcessedObservable.

Flux159 hace 4 años
padre
commit
09f3040fa2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      gui/src/2D/controls/focusableButton.ts

+ 1 - 1
gui/src/2D/controls/focusableButton.ts

@@ -81,7 +81,7 @@ export class FocusableButton extends Button implements IFocusableControl {
      * @param evt Defines the KeyboardEvent
      */
     public processKeyboard(evt: KeyboardEvent): void {
-        this.onKeyboardEventProcessedObservable.notifyObservers(evt);
+        this.onKeyboardEventProcessedObservable.notifyObservers(evt, -1, this);
     }
 
     /** @hidden */