diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-10-27 14:31:28 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-10-27 14:31:28 +0000 |
commit | 3f20d344cd05062fe110c56b9f829bbc491a474e (patch) | |
tree | e6fc222c264c07fdfa41143ae249a0824ab49642 /editors/code | |
parent | a03f00476683f0e6e373c71e8ac788795029acb3 (diff) | |
parent | 8a5a5b24776cb253251931a993f13d4476f844d7 (diff) |
Merge #6382
6382: Set font-wieght: normal on inlay hints r=SomeoneToIgnore a=lnicola
Co-authored-by: Laurențiu Nicola <[email protected]>
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/src/inlay_hints.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editors/code/src/inlay_hints.ts b/editors/code/src/inlay_hints.ts index ed0db2924..09f40229b 100644 --- a/editors/code/src/inlay_hints.ts +++ b/editors/code/src/inlay_hints.ts | |||
@@ -60,6 +60,7 @@ function createHintStyle(hintKind: "type" | "parameter" | "chaining") { | |||
60 | color: fg, | 60 | color: fg, |
61 | backgroundColor: bg, | 61 | backgroundColor: bg, |
62 | fontStyle: "normal", | 62 | fontStyle: "normal", |
63 | fontWeight: "normal", | ||
63 | }, | 64 | }, |
64 | }), | 65 | }), |
65 | toDecoration(hint: ra.InlayHint, conv: lc.Protocol2CodeConverter): vscode.DecorationOptions { | 66 | toDecoration(hint: ra.InlayHint, conv: lc.Protocol2CodeConverter): vscode.DecorationOptions { |