mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 03:18:07 +00:00
fix crash (showing window while it is destroyed) (fix #LINQT-2077, #LINQT-2087, #LINQT-2110)
This commit is contained in:
parent
0c87a8d94e
commit
c70426f770
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ ApplicationWindow {
|
|||
width: Math.min(Utils.getSizeWithScreenRatio(1512), Screen.desktopAvailableWidth)
|
||||
height: Math.min(Utils.getSizeWithScreenRatio(982), Screen.desktopAvailableHeight)
|
||||
|
||||
onActiveChanged: UtilsCpp.setLastActiveWindow(this)
|
||||
onActiveChanged: if (active) UtilsCpp.setLastActiveWindow(this)
|
||||
|
||||
property bool isFullscreen: visibility == Window.FullScreen
|
||||
onIsFullscreenChanged: DesktopToolsCpp.screenSaverStatus = !isFullscreen
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue