Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLadislau Szomoru <3372902+lszomoru@users.noreply.github.com>2022-07-14 09:55:29 +0300
committerGitHub <noreply@github.com>2022-07-14 09:55:29 +0300
commitf6332bd86d3c44ed5cedf6067e7440c7a27b6ae4 (patch)
tree2299223762f929288dac92d960e175e296a059f7 /extensions
parent461f8694f5e489c6da83e72f1267fef5d0a5e60f (diff)
Git - Use cloud icon for remote branches (#155140)
Use cloud icon for remote branches
Diffstat (limited to 'extensions')
-rw-r--r--extensions/git/src/commands.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/git/src/commands.ts b/extensions/git/src/commands.ts
index 4bbb17e5137..37c500f7605 100644
--- a/extensions/git/src/commands.ts
+++ b/extensions/git/src/commands.ts
@@ -53,7 +53,7 @@ class CheckoutTagItem extends CheckoutItem {
class CheckoutRemoteHeadItem extends CheckoutItem {
- override get label(): string { return `$(git-branch) ${this.ref.name || this.shortCommit}`; }
+ override get label(): string { return `$(cloud) ${this.ref.name || this.shortCommit}`; }
override get description(): string {
return localize('remote branch at', "Remote branch at {0}", this.shortCommit);
}