1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-24 01:54:22 +00:00

XWindowSystem: Update frame extents as soon as they change

This commit is contained in:
reuk 2021-10-25 16:44:48 +01:00
parent 4ca923a34b
commit 496e454e9c
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11

View file

@ -3668,6 +3668,9 @@ void XWindowSystem::propertyNotifyEvent (LinuxComponentPeer* peer, const XProper
if (isStateChangeEvent() || isHidden())
dismissBlockingModals (peer);
if (event.atom == XWindowSystemUtilities::Atoms::getIfExists (display, "_NET_FRAME_EXTENTS"))
peer->updateBorderSize();
}
void XWindowSystem::handleMappingNotify (XMappingEvent& mappingEvent) const