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