We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc7403c commit 7894c67Copy full SHA for 7894c67
1 file changed
electron/windows.ts
@@ -22,7 +22,7 @@ export function createHudOverlayWindow(): BrowserWindow {
22
const { workArea } = primaryDisplay;
23
24
const windowWidth = 600;
25
- const windowHeight = 155;
+ const windowHeight = 200;
26
27
const x = Math.floor(workArea.x + (workArea.width - windowWidth) / 2);
28
const y = Math.floor(workArea.y + workArea.height - windowHeight - 5);
@@ -32,8 +32,8 @@ export function createHudOverlayWindow(): BrowserWindow {
32
height: windowHeight,
33
minWidth: 600,
34
maxWidth: 600,
35
- minHeight: 155,
36
- maxHeight: 155,
+ minHeight: 200,
+ maxHeight: 200,
37
x: x,
38
y: y,
39
frame: false,
0 commit comments