Skip to content

Commit

Permalink
Listener leak alarm for onThemeChange Fixes #69896
Browse files Browse the repository at this point in the history
  • Loading branch information
aeschli committed Mar 7, 2019
1 parent 0697b3a commit 5a552a4
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -109,7 +109,7 @@ export class WorkbenchThemeService implements IWorkbenchThemeService {
this.colorThemeStore = new ColorThemeStore(extensionService, ColorThemeData.createLoadedEmptyTheme(DEFAULT_THEME_ID, DEFAULT_THEME_SETTING_VALUE));
this.onFileIconThemeChange = new Emitter<IFileIconTheme>();
this.iconThemeStore = new FileIconThemeStore(extensionService);
this.onColorThemeChange = new Emitter<IColorTheme>();
this.onColorThemeChange = new Emitter<IColorTheme>({ leakWarningThreshold: 400 });

this.currentIconTheme = FileIconThemeData.createUnloadedTheme('');

Expand Down

0 comments on commit 5a552a4

Please sign in to comment.