- restore min width to 600px
This commit is contained in:
parent
f0bc3ca5b1
commit
b268b95849
|
@ -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");
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue