diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-10-14 01:43:07 +0200 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-10-16 16:05:19 +0200 |
commit | c69c1ee9d1305c284be48a7a973810da16c15541 (patch) | |
tree | dd535082f817ea79311b278cb7c1a3849d2b86b1 /vcl/osx/salframeview.mm | |
parent | bcccdc71cb363760c6b0899fd13dee4203ec8711 (diff) |
tdf#112076 OSX post timeout after shouldCloseWindow
It seems that something filters application defined events when
closing a window... DoYield expects a timeout event, which never
arrives, stopping all redraw and generating a busy loop.
Change-Id: Ic83468cceac7b967acaecf18b321178fc7565b94
Reviewed-on: https://gerrit.libreoffice.org/43381
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'vcl/osx/salframeview.mm')
-rw-r--r-- | vcl/osx/salframeview.mm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vcl/osx/salframeview.mm b/vcl/osx/salframeview.mm index 1f0a3690bb70..c0d28fe4bc3f 100644 --- a/vcl/osx/salframeview.mm +++ b/vcl/osx/salframeview.mm @@ -369,6 +369,9 @@ static AquaSalFrame* getMouseContainerFrame() { mpFrame->CallCallback( SalEvent::Close, nullptr ); bRet = NO; // application will close the window or not, AppKit shouldn't + AquaSalTimer *pTimer = static_cast<AquaSalTimer*>( ImplGetSVData()->maSchedCtx.mpSalTimer ); + assert( pTimer ); + pTimer->handleWindowShouldClose(); } } |