diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-10-28 12:36:51 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-10-28 12:36:51 +0000 |
commit | a9b60b8478d19ea6118e6aee816bb25c2f88a3bf (patch) | |
tree | d40ddca1ff32c28e6389cfeb9b4b0ce5be572510 /editors | |
parent | 53c7aead8fbd50156a0082f4f35b9cba961a65ca (diff) | |
parent | 91b4dd63b0da89220ed14d50fd382483d9226a26 (diff) |
Merge #6392
6392: Also set textDecoration: none on inlay hints r=SomeoneToIgnore a=lnicola
Closes #6380
Co-authored-by: Laurențiu Nicola <[email protected]>
Diffstat (limited to 'editors')
-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 09f40229b..2336a266a 100644 --- a/editors/code/src/inlay_hints.ts +++ b/editors/code/src/inlay_hints.ts | |||
@@ -61,6 +61,7 @@ function createHintStyle(hintKind: "type" | "parameter" | "chaining") { | |||
61 | backgroundColor: bg, | 61 | backgroundColor: bg, |
62 | fontStyle: "normal", | 62 | fontStyle: "normal", |
63 | fontWeight: "normal", | 63 | fontWeight: "normal", |
64 | textDecoration: "none", | ||
64 | }, | 65 | }, |
65 | }), | 66 | }), |
66 | toDecoration(hint: ra.InlayHint, conv: lc.Protocol2CodeConverter): vscode.DecorationOptions { | 67 | toDecoration(hint: ra.InlayHint, conv: lc.Protocol2CodeConverter): vscode.DecorationOptions { |