Prevent KWin from sending out multiple sync requests before the client
has time to reply. BUG: 183263 svn path=/trunk/KDE/kdebase/workspace/; revision=1030473
This commit is contained in:
parent
4a1d35f2bc
commit
b4938657b8
1 changed files with 1 additions and 1 deletions
|
@ -3149,7 +3149,7 @@ void Client::performMoveResize()
|
|||
if( isElectricBorderMaximizing() )
|
||||
return;
|
||||
#ifdef HAVE_XSYNC
|
||||
if( isResize() && sync_counter != None )
|
||||
if( isResize() && sync_counter != None && !sync_resize_pending )
|
||||
{
|
||||
sync_timeout = new QTimer( this );
|
||||
connect( sync_timeout, SIGNAL( timeout()), SLOT( syncTimeout()));
|
||||
|
|
Loading…
Reference in a new issue