Skip to content

Commit 7659e28

Browse files
authored
Remove incorrect editor background setting (#3806)
1 parent 8e89815 commit 7659e28

2 files changed

Lines changed: 0 additions & 5 deletions

File tree

Extension/src/LanguageServer/colorization.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -306,10 +306,6 @@ export class ColorizationSettings {
306306
let themeFullPath: string = path.join(extensionPath, themeRelativePath);
307307
let defaultStyle: ThemeStyle = new ThemeStyle();
308308
let rulesSet: TextMateRule[][] = await this.loadTheme(themeFullPath, defaultStyle);
309-
let editorBackgroundSetting: string = otherSettings.editorBackground;
310-
if (editorBackgroundSetting) {
311-
this.editorBackground = editorBackgroundSetting;
312-
}
313309
this.updateStyles(themeName, defaultStyle, rulesSet);
314310
return;
315311
}

Extension/src/LanguageServer/settings.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ export class OtherSettings {
117117
public get filesExclude(): vscode.WorkspaceConfiguration { return vscode.workspace.getConfiguration("files", this.resource).get("exclude"); }
118118
public get searchExclude(): vscode.WorkspaceConfiguration { return vscode.workspace.getConfiguration("search", this.resource).get("exclude"); }
119119
public get settingsEditor(): string { return vscode.workspace.getConfiguration("workbench.settings").get<string>("editor"); }
120-
public get editorBackground(): string { return vscode.workspace.getConfiguration("editor", this.resource).get<string>("background"); }
121120

122121
public get colorTheme(): string { return vscode.workspace.getConfiguration("workbench").get<string>("colorTheme"); }
123122

0 commit comments

Comments
 (0)