fileset-desktop/ipc/windows.js

9 lines
161 B
JavaScript

const reSize = (width, height) => {
global.windows.setMinimumSize(width, height);
global.windows.setSize(width, height);
};
module.exports = {
reSize,
};