File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/vs/platform/theme/electron-main Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -63,14 +63,14 @@ export class ThemeMainService extends Disposable implements IThemeMainService {
63
63
}
64
64
65
65
private updateSystemColorTheme ( ) : void {
66
- switch ( this . configurationService . getValue < 'default' | 'auto ' | 'light' | 'dark' > ( SYSTEM_COLOR_THEME ) ) {
66
+ switch ( this . configurationService . getValue < 'default' | 'matchColorTheme ' | 'light' | 'dark' > ( SYSTEM_COLOR_THEME ) ) {
67
67
case 'dark' :
68
68
nativeTheme . themeSource = 'dark' ;
69
69
break ;
70
70
case 'light' :
71
71
nativeTheme . themeSource = 'light' ;
72
72
break ;
73
- case 'auto ' :
73
+ case 'matchColorTheme ' :
74
74
switch ( this . getBaseTheme ( ) ) {
75
75
case 'vs' : nativeTheme . themeSource = 'light' ; break ;
76
76
case 'vs-dark' : nativeTheme . themeSource = 'dark' ; break ;
You can’t perform that action at this time.
0 commit comments