fix: align Hyprland fullscreen overlays

This commit is contained in:
2026-05-03 23:02:07 -07:00
parent 95277f30bd
commit 745996c72d
13 changed files with 328 additions and 3 deletions
@@ -77,6 +77,7 @@ test('overlay manager applies bounds for main and modal windows', () => {
const visibleCalls: Electron.Rectangle[] = [];
const visibleWindow = {
isDestroyed: () => false,
getTitle: () => 'SubMiner Overlay',
setBounds: (bounds: Electron.Rectangle) => {
visibleCalls.push(bounds);
},
@@ -84,6 +85,7 @@ test('overlay manager applies bounds for main and modal windows', () => {
const modalCalls: Electron.Rectangle[] = [];
const modalWindow = {
isDestroyed: () => false,
getTitle: () => 'SubMiner Overlay Modal',
setBounds: (bounds: Electron.Rectangle) => {
modalCalls.push(bounds);
},