Git Blame - fix editor decoration hover (#234469)

pull/234483/head
Ladislau Szomoru 2024-11-23 11:05:26 +01:00 committed by GitHub
parent eb41ec10c6
commit 9088a3747d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -271,7 +271,6 @@ class GitBlameEditorDecoration {
constructor(private readonly _controller: GitBlameController) {
this._decorationType = window.createTextEditorDecorationType({
isWholeLine: true,
after: {
color: new ThemeColor('git.blame.editorDecorationForeground')
}
@ -333,7 +332,8 @@ class GitBlameEditorDecoration {
range: new Range(position, position),
renderOptions: {
after: {
contentText: `\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0${contentText}`
contentText: `${contentText}`,
margin: '0 0 0 50px'
}
},
};