Browse Source

Fixes #858 - forces 16x16 avatars in hovers

main
Eric Amodio 5 years ago
parent
commit
3dc9e69626
2 changed files with 4 additions and 1 deletions
  1. +1
    -0
      CHANGELOG.md
  2. +3
    -1
      src/git/formatters/commitFormatter.ts

+ 1
- 0
CHANGELOG.md View File

@ -17,6 +17,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
- Fixes [#858](https://github.com/eamodio/vscode-gitlens/issues/858) - GitHub avatars in blame line hovers are huge
- Fixes issue with locating a working file when the file is staged or modified
## [10.0.0]- 2019-09-20

+ 3
- 1
src/git/formatters/commitFormatter.ts View File

@ -129,7 +129,9 @@ export class CommitFormatter extends Formatter {
return emptyStr;
}
let avatar = `![](${this._item.getGravatarUri(Container.config.defaultGravatarsStyle).toString(true)})`;
let avatar = `![](${this._item
.getGravatarUri(Container.config.defaultGravatarsStyle)
.toString(true)}|width=16,height=16)`;
const presence = this._options.presence;
if (presence != null) {

Loading…
Cancel
Save