From d3944b39347db07edf23ba2d0f81213819c881de Mon Sep 17 00:00:00 2001 From: bhughes Date: Wed, 31 Jan 2001 15:14:40 +0000 Subject: [PATCH] allow kpager/kminipager to see window moves/resizes @@ -1198,7 +1198,7 @@ c.width = windowWrapper()->width(); c.height = windowWrapper()->height(); c.border_width = 0; - XSendEvent( qt_xdisplay(), c.event, TRUE, NoEventMask, (XEvent*)&c ); + XSendEvent( qt_xdisplay(), c.event, TRUE, StructureNotifyMask, (XEvent*)&c ); } svn path=/trunk/kdebase/kwin/; revision=80826 --- client.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client.cpp b/client.cpp index 050ffb05ee..aa577b6acc 100644 --- a/client.cpp +++ b/client.cpp @@ -1198,7 +1198,7 @@ void Client::sendSynteticConfigureNotify() c.width = windowWrapper()->width(); c.height = windowWrapper()->height(); c.border_width = 0; - XSendEvent( qt_xdisplay(), c.event, TRUE, NoEventMask, (XEvent*)&c ); + XSendEvent( qt_xdisplay(), c.event, TRUE, StructureNotifyMask, (XEvent*)&c ); } @@ -1708,7 +1708,7 @@ void Client::iconify() if ( isShade() ) setShade( FALSE ); - + setMappingState( IconicState ); Events::raise( Events::Iconify );