ソースを参照

Fixes #858 - forces 16x16 avatars in hovers

main
Eric Amodio 5年前
コミット
3dc9e69626
2個のファイルの変更4行の追加1行の削除
  1. +1
    -0
      CHANGELOG.md
  2. +3
    -1
      src/git/formatters/commitFormatter.ts

+ 1
- 0
CHANGELOG.md ファイルの表示

@ -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 ファイルの表示

@ -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) {

読み込み中…
キャンセル
保存