Skip to content

Commit ce4c2a3

Browse files
authored
Merge pull request microsoft#76359 from tony-xia/property-name-typo
onHighlghtRemoved -> onHighlightRemoved
2 parents 8afdb51 + f93a39c commit ce4c2a3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/vs/workbench/browser/parts/editor/rangeDecorations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export class RangeHighlightDecorations extends Disposable {
2626
private editorDisposables: IDisposable[] = [];
2727

2828
private readonly _onHighlightRemoved: Emitter<void> = this._register(new Emitter<void>());
29-
get onHighlghtRemoved(): Event<void> { return this._onHighlightRemoved.event; }
29+
get onHighlightRemoved(): Event<void> { return this._onHighlightRemoved.event; }
3030

3131
constructor(@IEditorService private readonly editorService: IEditorService) {
3232
super();

src/vs/workbench/contrib/preferences/browser/preferencesRenderers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -916,8 +916,8 @@ class SettingHighlighter extends Disposable {
916916
super();
917917
this.fixedHighlighter = this._register(instantiationService.createInstance(RangeHighlightDecorations));
918918
this.volatileHighlighter = this._register(instantiationService.createInstance(RangeHighlightDecorations));
919-
this.fixedHighlighter.onHighlghtRemoved(() => this.clearFocusEventEmitter.fire(this.highlightedSetting));
920-
this.volatileHighlighter.onHighlghtRemoved(() => this.clearFocusEventEmitter.fire(this.highlightedSetting));
919+
this.fixedHighlighter.onHighlightRemoved(() => this.clearFocusEventEmitter.fire(this.highlightedSetting));
920+
this.volatileHighlighter.onHighlightRemoved(() => this.clearFocusEventEmitter.fire(this.highlightedSetting));
921921
}
922922

923923
highlight(setting: ISetting, fix: boolean = false) {

0 commit comments

Comments
 (0)