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 159672d commit 3b98109Copy full SHA for 3b98109
dev/TabView/TabViewItem.cpp
@@ -105,7 +105,8 @@ void TabViewItem::UpdateTabGeometry()
105
{
106
auto const templateSettings = winrt::get_self<TabViewItemTemplateSettings>(TabViewTemplateSettings());
107
108
- auto const height = ActualHeight();
+ // Need to increment actual height by 1 due to 'SelectedBackgroundPath' not being drawn correctly in non-100% scale factors
109
+ auto const height = ActualHeight() + 1;
110
auto const popupRadius = unbox_value<winrt::CornerRadius>(ResourceAccessor::ResourceLookup(*this, box_value(c_overlayCornerRadiusKey)));
111
auto const leftCorner = popupRadius.TopLeft;
112
auto const rightCorner = popupRadius.TopRight;
0 commit comments