style(D.2b): split two-statement line in importer wiring (review nit)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Erik 2026-06-15 14:23:01 +02:00
parent ab3ab79380
commit 25be30b1a7

View file

@ -1814,7 +1814,8 @@ public sealed class GameWindow : IDisposable
staminaText: () => (_vitalsVm!.StaminaCurrent, _vitalsVm.StaminaMax) is (uint c, uint m) ? $"{c}/{m}" : "",
manaText: () => (_vitalsVm!.ManaCurrent, _vitalsVm.ManaMax) is (uint c, uint m) ? $"{c}/{m}" : "");
// Offset beside the hand-authored window (at x=10) for an A/B visual comparison.
imported.Root.Left = 200; imported.Root.Top = 30;
imported.Root.Left = 200;
imported.Root.Top = 30;
_uiHost.Root.AddChild(imported.Root);
Console.WriteLine("[D.2b] importer vitals window active (A/B vs hand-authored).");
}