Skip to content

Commit 3dc9e69

Browse files
committed
Fixes #858 - forces 16x16 avatars in hovers
1 parent e3d7590 commit 3dc9e69

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1717

1818
### Fixed
1919

20+
- Fixes [#858](https://github.com/eamodio/vscode-gitlens/issues/858) - GitHub avatars in blame line hovers are huge
2021
- Fixes issue with locating a working file when the file is staged or modified
2122

2223
## [10.0.0]- 2019-09-20

src/git/formatters/commitFormatter.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,9 @@ export class CommitFormatter extends Formatter<GitCommit, CommitFormatOptions> {
129129
return emptyStr;
130130
}
131131

132-
let avatar = `![](${this._item.getGravatarUri(Container.config.defaultGravatarsStyle).toString(true)})`;
132+
let avatar = `![](${this._item
133+
.getGravatarUri(Container.config.defaultGravatarsStyle)
134+
.toString(true)}|width=16,height=16)`;
133135

134136
const presence = this._options.presence;
135137
if (presence != null) {

0 commit comments

Comments
 (0)