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
icc-effect-5.14.5
Lucas Murray 2009-10-03 14:07:49 +00:00
parent 9f420c13ab
commit 52653a13b4
1 changed files with 2 additions and 1 deletions

View File

@ -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()));