SDA-3434 - Fix hamburger menu focus issue (#1287)

This commit is contained in:
Kiran Niranjan 2021-11-03 14:28:34 +05:30 committed by GitHub
parent ef630cdd8c
commit 349fa2c1bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -163,6 +163,12 @@ ipcMain.on(
browserWin.winName === apiName.welcomeScreenName)
) {
showPopupMenu({ window: browserWin });
// Give focus back to main webContents so that
// cut, copy & paste from edit menu works as expected
const mainWebContents = windowHandler.getMainWebContents();
if (mainWebContents && !mainWebContents.isDestroyed()) {
mainWebContents.focus();
}
}
break;
}