aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/app/main.js2
-rw-r--r--src/index.js6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/app/main.js b/src/app/main.js
index 0118b0c..9bafaa5 100644
--- a/src/app/main.js
+++ b/src/app/main.js
@@ -37,5 +37,5 @@ ipcRenderer.on("newpath", (event, newpath) => {
setlang();
setInterval(() => {
- ipcRenderer.send("setsize", document.querySelector(".lines").offsetHeight + 25);
+ ipcRenderer.send("setsize", document.querySelector(".lines").offsetHeight + 20);
}, 150)
diff --git a/src/index.js b/src/index.js
index 74f776c..aacfe27 100644
--- a/src/index.js
+++ b/src/index.js
@@ -9,10 +9,10 @@ const utils = require("./utils");
const cli = require("./cli");
function start() {
- let width = 115;
+ let width = 600;
win = new BrowserWindow({
- width: 600,
- height: width,
+ width: width,
+ height: 115,
show: false,
title: "Viper",
resizable: false,