We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da6705c commit e943785Copy full SHA for e943785
src/cascadia/TerminalApp/AppLogic.cpp
@@ -591,10 +591,10 @@ namespace winrt::TerminalApp::implementation
591
auto tabControl = TabRowControl();
592
tabControl.Measure({ SHRT_MAX, SHRT_MAX });
593
594
- // For whatever reason, there's about 6px of unaccounted-for space
595
- // in the application. I couldn't tell you where these 6px are
+ // For whatever reason, there's about 10px of unaccounted-for space
+ // in the application. I couldn't tell you where these 10px are
596
// coming from, but they need to be included in this math.
597
- proposedSize.Width += (tabControl.DesiredSize().Height + 6) * scale;
+ proposedSize.Height += (tabControl.DesiredSize().Height + 10) * scale;
598
}
599
600
return proposedSize;
0 commit comments