From b788c6f6052ce9ecdc9e204b522db8db4d15eb8f Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Mon, 16 Jan 2017 10:37:34 +0100 Subject: [PATCH] git: statusbar tooltip --- extensions/git/src/statusbar.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/extensions/git/src/statusbar.ts b/extensions/git/src/statusbar.ts index 2355029ac32..fb7210158c7 100644 --- a/extensions/git/src/statusbar.ts +++ b/extensions/git/src/statusbar.ts @@ -81,13 +81,16 @@ export class SyncStatusBar { text += `${HEAD.behind}↓ ${HEAD.ahead}↑`; } this.raw.command = 'git.sync'; + this.raw.tooltip = 'Synchronize changes'; } else { icon = '$(cloud-upload)'; this.raw.command = 'git.publish'; + this.raw.tooltip = 'Publish changes'; } } else { this.raw.color = 'rgba(255,255,255,0.7)'; this.raw.command = ''; + this.raw.tooltip = ''; } this.raw.text = [icon, text].join(' ').trim();