https://bugs.documentfoundation.org/show_bug.cgi?id=170740
--- Comment #23 from Patrick (volunteer) <[email protected]> --- (In reply to Patrick (volunteer) from comment #22) > What happens if you replace the following line in my patch: Ignore my changes in comment #22 as it won't work. Try the following debug patch instead: diff --git a/vcl/osx/salinst.cxx b/vcl/osx/salinst.cxx index 669df792606c..a5b42724adf0 100644 --- a/vcl/osx/salinst.cxx +++ b/vcl/osx/salinst.cxx @@ -600,11 +600,12 @@ bool AquaSalInstance::DoYield(bool bWait, bool bHandleAllCurrentEvents) // prevent tdf#155092 during normal live resizing so allow // last mouse up events to be reposted but only once. static NSEvent *pLastRepostedEvent = nil; - bool bRepost = ( pLastRepostedEvent != pEvent ); + bool bRepost = true; if ( pLastRepostedEvent ) { [pLastRepostedEvent release]; pLastRepostedEvent = nil; + bRepost = false; } if ( bRepost ) { -- You are receiving this mail because: You are the assignee for the bug.
