mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
Revert bring to front fix (#2179)
* Revert "SDA-4604 Limiting window activation change to macOS for bring-to-front feature only (#2176) (#2177)" This reverts commite543476c38
. * Revert "SDA-4604 Bring to the front feature fix by calling show method (#2174)" This reverts commit6d6818548a
. * Upgrade electron@31.2.1
This commit is contained in:
parent
e543476c38
commit
a90399f024
@ -187,7 +187,9 @@ export const activate = (
|
||||
// Bring the window to the top without focusing
|
||||
// Flash task bar icon in Windows for windows
|
||||
if (!shouldFocus) {
|
||||
return isMac || isLinux ? window.show() : window.flashFrame(true);
|
||||
return isMac || isLinux
|
||||
? window.showInactive()
|
||||
: window.flashFrame(true);
|
||||
}
|
||||
|
||||
// Note: On window just focusing will preserve window snapped state
|
||||
|
Loading…
Reference in New Issue
Block a user