Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
lhecker committed Nov 4, 2024
1 parent 28af297 commit 0978ece
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cascadia/TerminalControl/TermControl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3575,8 +3575,8 @@ namespace winrt::Microsoft::Terminal::Control::implementation
HoveredUri().Text(uriText);

// Set the border thickness so it covers the entire cell
const auto charSizeInPixels = CharacterDimensions();
const Thickness newThickness{ charSizeInPixels.Height, charSizeInPixels.Width, 0, 0 };
const auto fontSize = CharacterDimensions();
const Thickness newThickness{ fontSize.Height, fontSize.Width, 0, 0 };
HyperlinkTooltipBorder().BorderThickness(newThickness);

// Compute the location of the top left corner of the cell in DIPS
Expand Down

0 comments on commit 0978ece

Please sign in to comment.