SDA-3819 - Fix initial pop-out loading issue (#1479)

This commit is contained in:
Kiran Niranjan 2022-08-26 06:40:21 +05:30 committed by GitHub
parent 1878b33c52
commit a82325eb52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -281,6 +281,9 @@ export const handleChildWindow = (webContents: WebContents): void => {
if (isWindowsOS) {
browserWin.setMenuBarVisibility(false);
}
if (mainWindow.isAlwaysOnTop()) {
browserWin.setAlwaysOnTop(true);
}
}
});