Skip to content

Commit

Permalink
Tree Guide Indents not showing in latest Insiders (#86675)
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn authored and sbatten committed Dec 10, 2019
1 parent 3075787 commit 9579eda
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/vs/platform/list/browser/listService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { IEditorOptions } from 'vs/platform/editor/common/editor';
import { createDecorator, IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding';
import { Registry } from 'vs/platform/registry/common/platform';
import { attachListStyler, computeStyles, defaultListStyles, IColorMapping, attachStyler } from 'vs/platform/theme/common/styler';
import { attachListStyler, computeStyles, defaultListStyles, IColorMapping } from 'vs/platform/theme/common/styler';
import { IThemeService } from 'vs/platform/theme/common/themeService';
import { InputFocusedContextKey } from 'vs/platform/contextkey/common/contextkeys';
import { ObjectTree, IObjectTreeOptions, ICompressibleTreeRenderer, CompressibleObjectTree, ICompressibleObjectTreeOptions } from 'vs/base/browser/ui/tree/objectTree';
Expand Down Expand Up @@ -287,7 +287,7 @@ export class WorkbenchList<T> extends List<T> {
this.disposables.add((listService as ListService).register(this));

if (options.overrideStyles) {
this.disposables.add(attachStyler(themeService, options.overrideStyles, this));
this.disposables.add(attachListStyler(this, themeService, options.overrideStyles));
}

this.disposables.add(this.onSelectionChange(() => {
Expand Down Expand Up @@ -368,7 +368,7 @@ export class WorkbenchPagedList<T> extends PagedList<T> {
this.disposables.add((listService as ListService).register(this));

if (options.overrideStyles) {
this.disposables.add(attachStyler(themeService, options.overrideStyles, this));
this.disposables.add(attachListStyler(this, themeService, options.overrideStyles));
}

this.registerListeners();
Expand Down Expand Up @@ -1044,7 +1044,7 @@ class WorkbenchTreeInternals<TInput, T, TFilterData> {
this.disposables.push(
this.contextKeyService,
(listService as ListService).register(tree),
overrideStyles ? attachStyler(themeService, overrideStyles, tree) : Disposable.None,
overrideStyles ? attachListStyler(tree, themeService, overrideStyles) : Disposable.None,
tree.onDidChangeSelection(() => {
const selection = tree.getSelection();
const focus = tree.getFocus();
Expand Down

0 comments on commit 9579eda

Please sign in to comment.