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
This commit is contained in:
parent
9f420c13ab
commit
52653a13b4
1 changed files with 2 additions and 1 deletions
|
@ -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()));
|
||||
|
|
Loading…
Reference in a new issue