make kwintv happy: send synthetic configure notify events when
doing opaque moves svn path=/trunk/kdebase/kwin/; revision=139708
This commit is contained in:
parent
e34a6ee283
commit
f55f2682cf
1 changed files with 2 additions and 2 deletions
|
@ -1698,7 +1698,7 @@ void Client::leaveEvent( QEvent * )
|
|||
void Client::setGeometry( int x, int y, int w, int h )
|
||||
{
|
||||
QWidget::setGeometry(x, y, w, h);
|
||||
if ( !isResize() && !isMove() && isVisible() )
|
||||
if ( !isResize() && isVisible() )
|
||||
sendSyntheticConfigureNotify();
|
||||
}
|
||||
|
||||
|
@ -1708,7 +1708,7 @@ void Client::setGeometry( int x, int y, int w, int h )
|
|||
void Client::move( int x, int y )
|
||||
{
|
||||
QWidget::move( x, y );
|
||||
if ( !isResize() && !isMove() && isVisible() )
|
||||
if ( !isResize() && isVisible() )
|
||||
sendSyntheticConfigureNotify();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue