Skip to content

Commit c83b1fb

Browse files
committed
ux: tab bottom corner
1 parent bab1a57 commit c83b1fb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Views/LauncherTabBar.axaml.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public override void Render(DrawingContext context)
5858

5959
var geo = new StreamGeometry();
6060
var angle = Math.PI / 2;
61-
var y = height + 0.25;
61+
var y = height + 0.1;
6262
using (var ctx = geo.Open())
6363
{
6464
double x;
@@ -94,17 +94,17 @@ public override void Render(DrawingContext context)
9494
x = drawRightX;
9595
y = 6;
9696
ctx.ArcTo(new Point(x, y), new Size(6, 6), angle, false, SweepDirection.Clockwise);
97-
y = height + 0.25 - 5;
97+
y = height + 0.1 - 5;
9898
ctx.LineTo(new Point(x, y));
9999
x += 5;
100-
y = height + 0.25;
100+
y = height + 0.1;
101101
ctx.ArcTo(new Point(x, y), new Size(5, 5), angle, false, SweepDirection.CounterClockwise);
102102
}
103103
else
104104
{
105105
x = LauncherTabsScroller.Bounds.Right;
106106
ctx.LineTo(new Point(x, y));
107-
y = height + 0.25;
107+
y = height + 0.1;
108108
ctx.LineTo(new Point(x, y));
109109
}
110110
}

0 commit comments

Comments
 (0)