From 52653a13b4d701ee49ba0a94f3c1b5a6999f3543 Mon Sep 17 00:00:00 2001 From: Lucas Murray Date: Sat, 3 Oct 2009 14:07:49 +0000 Subject: [PATCH] Don't send sync requests when using the rubber band for window resizing. BUG: 181800 CCBUG: 183263 svn path=/trunk/KDE/kdebase/workspace/; revision=1030921 --- geometry.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/geometry.cpp b/geometry.cpp index 9070f9f876..ff60cfd8a5 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -3150,7 +3150,8 @@ void Client::performMoveResize() if( isElectricBorderMaximizing() ) return; #ifdef HAVE_XSYNC - if( isResize() && sync_counter != None && !sync_resize_pending ) + if( isResize() && options->resizeMode == Options::Opaque && + sync_counter != None && !sync_resize_pending ) { sync_timeout = new QTimer( this ); connect( sync_timeout, SIGNAL( timeout()), SLOT( syncTimeout()));