From e8559cfdd05ee59d08512934e44de927586aea2e Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 14 Mar 2022 23:14:26 -0400 Subject: [PATCH] Fixes #1829 replaces spin loader with watch --- CHANGELOG.md | 3 +++ src/statusbar/statusBarController.ts | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a1210d..bd890cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ### Fixed +# + +- Fixes [#1829](https://github.com/gitkraken/vscode-gitlens/issues/1829) - Reduce re-rendering by disabling animation in blame info in the status bar - Fixes [#1864](https://github.com/gitkraken/vscode-gitlens/issues/1864) - Worktrees fail to load in working path with spaces - Fixes [#1881](https://github.com/gitkraken/vscode-gitlens/issues/1881) - Worktrees icon is very small - Fixes [#1898](https://github.com/gitkraken/vscode-gitlens/issues/1898) - Hovers display old Gravatar — thanks to [PR #1899](https://github.com/gitkraken/vscode-gitlens/pull/1899) by Leo Dan Peña ([@amouxaden](https://github.com/amouxaden)) diff --git a/src/statusbar/statusBarController.ts b/src/statusbar/statusBarController.ts index e1d339f..decc228 100644 --- a/src/statusbar/statusBarController.ts +++ b/src/statusbar/statusBarController.ts @@ -163,7 +163,7 @@ export class StatusBarController implements Disposable { if (clear) { this.clearBlame(); } else if (this._statusBarBlame != null) { - this._statusBarBlame.text = this._statusBarBlame.text.replace('$(git-commit)', '$(loading~spin)'); + this._statusBarBlame.text = this._statusBarBlame.text.replace('$(git-commit)', '$(watch)'); } } @@ -221,7 +221,7 @@ export class StatusBarController implements Disposable { getBranchAndTagTips: getBranchAndTagTips, messageTruncateAtNewLine: true, pullRequestOrRemote: pr, - pullRequestPendingMessage: 'PR $(loading~spin)', + pullRequestPendingMessage: 'PR $(watch)', })}`; let tooltip: string;