Skip to content

Commit

Permalink
slightly enlarge control UI
Browse files Browse the repository at this point in the history
  • Loading branch information
rse committed Apr 18, 2021
1 parent 9b16d97 commit 73c7692
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vingester-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ electron.app.on("ready", async () => {
log.info("loading persistant settings")
const x = store.get("control.x", null)
const y = store.get("control.y", null)
const w = store.get("control.w", 860)
const w = store.get("control.w", 870)
const h = store.get("control.h", 420)
const pos = (x !== null && y !== null ? { x, y } : {})

Expand All @@ -126,7 +126,7 @@ electron.app.on("ready", async () => {
show: false,
width: w,
height: h,
minWidth: 860,
minWidth: 870,
minHeight: 420,
frame: false,
title: "Vingester",
Expand Down

0 comments on commit 73c7692

Please sign in to comment.