Skip to content

Conversation

@aiday-mar
Copy link
Contributor

fixes #275946

Copilot AI review requested due to automatic review settings February 10, 2026 11:13
@aiday-mar aiday-mar self-assigned this Feb 10, 2026
@aiday-mar aiday-mar marked this pull request as ready for review February 10, 2026 11:13
@vs-code-engineering vs-code-engineering bot added this to the February 2026 milestone Feb 10, 2026
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the editor markdown hover verbosity controls to use the dedicated small “+”/“−” codicons to avoid downscaling artifacts (blurriness) at 100% zoom/scale.

Changes:

  • Switch hover verbosity icons from Codicon.add/Codicon.remove to Codicon.addSmall/Codicon.removeSmall.

const $ = dom.$;
const increaseHoverVerbosityIcon = registerIcon('hover-increase-verbosity', Codicon.add, nls.localize('increaseHoverVerbosity', 'Icon for increaseing hover verbosity.'));
const decreaseHoverVerbosityIcon = registerIcon('hover-decrease-verbosity', Codicon.remove, nls.localize('decreaseHoverVerbosity', 'Icon for decreasing hover verbosity.'));
const increaseHoverVerbosityIcon = registerIcon('hover-increase-verbosity', Codicon.addSmall, nls.localize('increaseHoverVerbosity', 'Icon for increaseing hover verbosity.'));
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The localized description string has a spelling mistake: "increaseing" should be "increasing".

Suggested change
const increaseHoverVerbosityIcon = registerIcon('hover-increase-verbosity', Codicon.addSmall, nls.localize('increaseHoverVerbosity', 'Icon for increaseing hover verbosity.'));
const increaseHoverVerbosityIcon = registerIcon('hover-increase-verbosity', Codicon.addSmall, nls.localize('increaseHoverVerbosity', 'Icon for increasing hover verbosity.'));

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

TypeScript + and - icons are blurry at 100% zoom/100% monitor scale

1 participant