File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/vs/workbench/contrib/preferences/browser Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -51,12 +51,6 @@ export class SettingsTreeIndicatorsLabel implements IDisposable {
51
51
this . indicatorsContainerElement = DOM . append ( container , $ ( '.misc-label' ) ) ;
52
52
this . indicatorsContainerElement . style . display = 'inline' ;
53
53
54
- const scopeOverridesIndicator = this . createScopeOverridesIndicator ( ) ;
55
- this . scopeOverridesElement = scopeOverridesIndicator . element ;
56
- this . scopeOverridesLabel = scopeOverridesIndicator . label ;
57
- this . syncIgnoredElement = this . createSyncIgnoredElement ( ) ;
58
- this . defaultOverrideIndicatorElement = this . createDefaultOverrideIndicator ( ) ;
59
-
60
54
this . hoverDelegate = {
61
55
showHover : ( options : IHoverDelegateOptions , focus ?: boolean ) => {
62
56
return hoverService . showHover ( options , focus ) ;
@@ -65,6 +59,12 @@ export class SettingsTreeIndicatorsLabel implements IDisposable {
65
59
delay : configurationService . getValue < number > ( 'workbench.hover.delay' ) ,
66
60
placement : 'element'
67
61
} ;
62
+
63
+ const scopeOverridesIndicator = this . createScopeOverridesIndicator ( ) ;
64
+ this . scopeOverridesElement = scopeOverridesIndicator . element ;
65
+ this . scopeOverridesLabel = scopeOverridesIndicator . label ;
66
+ this . syncIgnoredElement = this . createSyncIgnoredElement ( ) ;
67
+ this . defaultOverrideIndicatorElement = this . createDefaultOverrideIndicator ( ) ;
68
68
}
69
69
70
70
private createScopeOverridesIndicator ( ) : { element : HTMLElement ; label : SimpleIconLabel } {
You can’t perform that action at this time.
0 commit comments