concurrency fix for post-frame resize handler

This commit is contained in:
Jack Andersen 2015-12-20 14:55:18 -10:00
parent 01ab873e06
commit 0b80cafe92
1 changed files with 2 additions and 0 deletions

View File

@ -962,7 +962,9 @@ public:
{
SWindowRect rect =
{ {m_wx, m_wy}, {m_ww, m_wh} };
XUnlockDisplay(m_xDisp);
m_callback->resized(rect);
XLockDisplay(m_xDisp);
}
return;
}