Skip to content

Commit

Permalink
tmTheme bold fontStyle is not supported. Fixes #10623.
Browse files Browse the repository at this point in the history
  • Loading branch information
aeschli committed Aug 17, 2016
1 parent 334bd17 commit 9cdb0d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ function _settingsToStatements(settings: ThemeSettingStyle): string {
case 'fontStyle':
let segments = value.split(' ');
segments.forEach(s => {
switch (value) {
switch (s) {
case 'italic':
statements.push(`font-style: italic;`);
break;
Expand Down

0 comments on commit 9cdb0d6

Please sign in to comment.