mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-12-29 02:11:28 -06:00
ELECTRON-1036: fix window destroyed exception on moving window (#563)
* ELECTRON-1036: fix window destroyed exception on moving window * update version number
This commit is contained in:
parent
608e293a98
commit
c844c7e14b
@ -856,7 +856,7 @@ function getMenu() {
|
||||
* @returns {*}
|
||||
*/
|
||||
function getWindowSizeAndPosition(window) {
|
||||
if (window) {
|
||||
if (window && !window.isDestroyed()) {
|
||||
let newPos = window.getPosition();
|
||||
let newSize = window.getSize();
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Symphony",
|
||||
"productName": "Symphony",
|
||||
"version": "4.4.0",
|
||||
"version": "4.3.3",
|
||||
"clientVersion": "1.54",
|
||||
"buildNumber": "0",
|
||||
"description": "Symphony desktop app (Foundation ODP)",
|
||||
|
Loading…
Reference in New Issue
Block a user