Skip to content

Commit 7894c67

Browse files
committed
fix: increase HUD window height to 200px to prevent selector clipping
1 parent dc7403c commit 7894c67

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

electron/windows.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function createHudOverlayWindow(): BrowserWindow {
2222
const { workArea } = primaryDisplay;
2323

2424
const windowWidth = 600;
25-
const windowHeight = 155;
25+
const windowHeight = 200;
2626

2727
const x = Math.floor(workArea.x + (workArea.width - windowWidth) / 2);
2828
const y = Math.floor(workArea.y + workArea.height - windowHeight - 5);
@@ -32,8 +32,8 @@ export function createHudOverlayWindow(): BrowserWindow {
3232
height: windowHeight,
3333
minWidth: 600,
3434
maxWidth: 600,
35-
minHeight: 155,
36-
maxHeight: 155,
35+
minHeight: 200,
36+
maxHeight: 200,
3737
x: x,
3838
y: y,
3939
frame: false,

0 commit comments

Comments
 (0)