Move HUD to lower third of screen (classic pre-Tahoe position)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
johnfrum1234 2026-03-10 13:30:01 +02:00
parent cee343dd96
commit de21639c24

View file

@ -24,7 +24,7 @@ class HUDPanel {
if let screen = NSScreen.main {
let screenFrame = screen.visibleFrame
let x = screenFrame.midX - hudSize.width / 2
let y = screenFrame.midY - hudSize.height / 2
let y = screenFrame.origin.y + screenFrame.height * 0.28 - hudSize.height / 2
panel.setFrameOrigin(NSPoint(x: x, y: y))
}