- restore min width to 600px

This commit is contained in:
Xen 2020-07-16 22:07:08 +08:00
parent f0bc3ca5b1
commit b268b95849
2 changed files with 3 additions and 6 deletions

View File

@ -64,9 +64,6 @@ const store = new Store({
store.set("transmit.hexmode", false);
store.set("about.insiderPreview", false);
},
"1.0.9": (store) => {
store.set("window.width", 700);
}
},
});
@ -635,4 +632,4 @@ document.getElementById("downward-btn").onclick = (e) => {
textDownward = true;
e.target.classList.remove("grey");
}
}
};

View File

@ -6,8 +6,8 @@ const Store = require("electron-store");
const store = new Store();
const widthDefault = 700;
const widthMin = 700;
const widthDefault = 600;
const widthMin = 600;
const widthMax = 1024;
const heightDefault = 640;
const heightMin = 400;