fileset-desktop/ipc/windows.js

9 lines
161 B
JavaScript
Raw Normal View History

2022-04-05 21:26:02 +08:00
const reSize = (width, height) => {
2022-04-14 20:28:20 +08:00
global.windows.setMinimumSize(width, height);
2022-04-05 21:26:02 +08:00
global.windows.setSize(width, height);
};
module.exports = {
reSize,
};