Skip to content

Commit b788c6f

Browse files
committed
git: statusbar tooltip
1 parent c101761 commit b788c6f

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

extensions/git/src/statusbar.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,16 @@ export class SyncStatusBar {
8181
text += `${HEAD.behind}${HEAD.ahead}↑`;
8282
}
8383
this.raw.command = 'git.sync';
84+
this.raw.tooltip = 'Synchronize changes';
8485
} else {
8586
icon = '$(cloud-upload)';
8687
this.raw.command = 'git.publish';
88+
this.raw.tooltip = 'Publish changes';
8789
}
8890
} else {
8991
this.raw.color = 'rgba(255,255,255,0.7)';
9092
this.raw.command = '';
93+
this.raw.tooltip = '';
9194
}
9295

9396
this.raw.text = [icon, text].join(' ').trim();

0 commit comments

Comments
 (0)