Skip to content

Commit

Permalink
Git Blame - fix editor decoration hover (#234469)
Browse files Browse the repository at this point in the history
  • Loading branch information
lszomoru authored Nov 23, 2024
1 parent eb41ec1 commit 9088a37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/git/src/blame.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@ class GitBlameEditorDecoration {

constructor(private readonly _controller: GitBlameController) {
this._decorationType = window.createTextEditorDecorationType({
isWholeLine: true,
after: {
color: new ThemeColor('git.blame.editorDecorationForeground')
}
Expand Down Expand Up @@ -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'
}
},
};
Expand Down

0 comments on commit 9088a37

Please sign in to comment.