Skip to content

Commit 94d6320

Browse files
authored
Folded decoration is rendered garbled (microsoft#166114)
Escape the ellipses character used for folding. For microsoft#145897
1 parent 86223f3 commit 94d6320

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/editor/contrib/folding/browser/folding.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
.monaco-editor .inline-folded:after {
2727
color: grey;
2828
margin: 0.1em 0.2em 0 0.2em;
29-
content: "⋯";
29+
content: "\22EF"; /* ellipses unicode character */
3030
display: inline;
3131
line-height: 1em;
3232
cursor: pointer;

0 commit comments

Comments
 (0)