File tree Expand file tree Collapse file tree
src/vs/editor/browser/widget Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ export abstract class CodeEditorWidget extends CommonCodeEditor implements edito
9898 this . _themeService = themeService ;
9999
100100 this . _focusTracker = new CodeEditorWidgetFocusTracker ( domElement ) ;
101- this . _focusTracker . onChage ( ( ) => {
101+ this . _focusTracker . onChange ( ( ) => {
102102 let hasFocus = this . _focusTracker . hasFocus ( ) ;
103103
104104 if ( hasFocus ) {
@@ -524,8 +524,7 @@ class CodeEditorWidgetFocusTracker extends Disposable {
524524 private _domFocusTracker : dom . IFocusTracker ;
525525
526526 private _onChange : Emitter < void > = this . _register ( new Emitter < void > ( ) ) ;
527- // TODO: Fix name
528- public onChage : Event < void > = this . _onChange . event ;
527+ public onChange : Event < void > = this . _onChange . event ;
529528
530529 constructor ( domElement : HTMLElement ) {
531530 super ( ) ;
You can’t perform that action at this time.
0 commit comments