-
Notifications
You must be signed in to change notification settings - Fork 32k
Add tooltips to extension navbar #49825
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
const run = () => this._update(id); | ||
const action = new Action(id, label, null, true, run); | ||
|
||
if (!action.tooltip) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do not think you need to check for existing tooltip. You can set it to given tooltip always
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right. No need for that then :)
What do you think of the captions as
Details
-> Extension details
Contributions
-> Extension contributions to VS Code editor
Changelog
-> Extension changelog
Dependencies
-> Extension dependencies
Got a comment and suggestions in #47586 about them being a bit "automatically generated" wich I guess is true. But they're also informative, which was the issue to begin with.
Thoughts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tooltips can be informative.. I think it makes sense to accept the suggestions from there.
Check for existing tooltip is removed. Captions changed to: |
LGTM Thanks @InspectorDeno |
Adds clarity to the extension details by adding tooltips, as mentioned in #47586.
