openflexure-microscope-server/app/store.js
2019-11-11 16:33:43 +00:00

9 lines
280 B
JavaScript

const Store = require("electron-store");
const store = new Store();
if (store.has("drawCustomTitleBar") !== true) {
// Default to false if on MacOS, otherwise true
store.set("drawCustomTitleBar", process.platform === "win32" ? true : false);
}
module.exports.store = store;