mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
parent
1c82bb3c6d
commit
e57cba9fe4
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ export class SettingsTreeIndicatorsLabel implements IDisposable {
|
||||||
this.scopeOverridesElement.innerText = '';
|
this.scopeOverridesElement.innerText = '';
|
||||||
this.scopeOverridesElement.style.display = 'none';
|
this.scopeOverridesElement.style.display = 'none';
|
||||||
const profileFeatureEnabled = this.configurationService.getValue<boolean>('workbench.experimental.settingsProfiles.enabled');
|
const profileFeatureEnabled = this.configurationService.getValue<boolean>('workbench.experimental.settingsProfiles.enabled');
|
||||||
if (profileFeatureEnabled && element.matchesScope(ConfigurationTarget.APPLICATION, false)) {
|
if (profileFeatureEnabled && !element.setting.isLanguageTagSetting && element.matchesScope(ConfigurationTarget.APPLICATION, false)) {
|
||||||
// If the setting is an application-scoped setting, there are no overrides so we can use this
|
// If the setting is an application-scoped setting, there are no overrides so we can use this
|
||||||
// indicator to display that information instead.
|
// indicator to display that information instead.
|
||||||
this.scopeOverridesElement.style.display = 'inline';
|
this.scopeOverridesElement.style.display = 'inline';
|
||||||
|
|
Loading…
Reference in a new issue