Skip to content

Commit

Permalink
Merge pull request #22186 from Nashenas88/master
Browse files Browse the repository at this point in the history
Fix borderRadius for decorations
  • Loading branch information
aeschli authored Mar 8, 2017
2 parents f824b2e + 286fe6f commit 4795fc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/editor/browser/services/codeEditorServiceImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ class DecorationRenderHelper {
return cssTextArr.join('');
}

private static border_rules = ['border', 'borderColor', 'borderColor', 'borderSpacing', 'borderStyle', 'borderWidth'];
private static border_rules = ['border', 'borderRadius', 'borderColor', 'borderSpacing', 'borderStyle', 'borderWidth'];

public static collectBorderSettingsCSSText(opts: any, cssTextArr: string[]): boolean {
if (DecorationRenderHelper.collectCSSText(opts, DecorationRenderHelper.border_rules, cssTextArr)) {
Expand Down

0 comments on commit 4795fc4

Please sign in to comment.