@@ -21,6 +21,7 @@ Release date: TBD
|
|||||||
- Do not place the application window outside of the viewable area anymore, if the display it has been on has been removed
|
- Do not place the application window outside of the viewable area anymore, if the display it has been on has been removed
|
||||||
- Remove remaining badges after logging out of the team
|
- Remove remaining badges after logging out of the team
|
||||||
- Fixed an issue where context menu appears many times after reloading
|
- Fixed an issue where context menu appears many times after reloading
|
||||||
|
- Fixed an issue where minimum window size is not set
|
||||||
|
|
||||||
#### Windows
|
#### Windows
|
||||||
- Fixed an issue where an unexpected window appears while install/uninstalling
|
- Fixed an issue where an unexpected window appears while install/uninstalling
|
||||||
|
@@ -447,7 +447,12 @@ app.on('ready', () => {
|
|||||||
if (process.platform === 'linux') {
|
if (process.platform === 'linux') {
|
||||||
windowOptions.icon = path.resolve(assetsDir, 'appicon.png');
|
windowOptions.icon = path.resolve(assetsDir, 'appicon.png');
|
||||||
}
|
}
|
||||||
Object.assign(windowOptions, {title: app.getName(), show: false});
|
Object.assign(windowOptions, {
|
||||||
|
title: app.getName(),
|
||||||
|
show: false,
|
||||||
|
minWidth: 400,
|
||||||
|
minHeight: 240
|
||||||
|
});
|
||||||
mainWindow = new BrowserWindow(windowOptions);
|
mainWindow = new BrowserWindow(windowOptions);
|
||||||
mainWindow.once('ready-to-show', () => {
|
mainWindow.once('ready-to-show', () => {
|
||||||
mainWindow.show();
|
mainWindow.show();
|
||||||
|
Reference in New Issue
Block a user