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 76ac17f commit 9116a02Copy full SHA for 9116a02
FrEee.UI.Blazor/Views/GalaxyMap.razor.cs
@@ -32,8 +32,8 @@ protected override async Task OnAfterRenderAsync(bool firstRender)
32
foreach (var dest in connections.Value)
33
{
34
// TODO: display one way warps differently (arrows, incomplete lines, gradients?)
35
- await ctx.MoveToAsync(src.Location.X, src.Location.Y);
36
- await ctx.LineToAsync(dest.Location.X, dest.Location.Y);
+ await ctx.MoveToAsync(src.Location.X + 1, src.Location.Y - 1);
+ await ctx.LineToAsync(dest.Location.X + 1, dest.Location.Y - 1);
37
await ctx.StrokeAsync();
38
}
39
0 commit comments