Skip to content

Commit 3ba027b

Browse files
committed
ux: prevents the top border from being cropped
1 parent 1241539 commit 3ba027b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Views/LauncherTabBar.axaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public override void Render(DrawingContext context)
6262
{
6363
x = LauncherTabsScroller.Bounds.X;
6464
ctx.BeginFigure(new Point(x, y), true);
65-
y = 0;
65+
y = 1;
6666
ctx.LineTo(new Point(x, y));
6767
x = drawRightX - 6;
6868
}
@@ -76,7 +76,7 @@ public override void Render(DrawingContext context)
7676
y = 6;
7777
ctx.LineTo(new Point(x, y));
7878
x += 6;
79-
y = 0;
79+
y = 1;
8080
ctx.ArcTo(new Point(x, y), new Size(6, 6), angle, false, SweepDirection.Clockwise);
8181
x = drawRightX - 6;
8282
}

0 commit comments

Comments
 (0)