From bfc2e695302ac9bd9a4f290ca96f3d06fb520c1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Fri, 30 Apr 2004 15:12:28 +0000 Subject: [PATCH] So much for clever workarounds. CCMAIL: 80653-done@bugs.kde.org svn path=/trunk/kdebase/kwin/; revision=307565 --- geometry.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geometry.cpp b/geometry.cpp index 7051d47904..3ab14e35d0 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -1120,12 +1120,12 @@ void Client::configureRequest( int value_mask, int rx, int ry, int rw, int rh, i if ( value_mask & CWY ) new_pos.setY( ry ); - // clever workaround for applications like xv that want to set + // clever(??) workaround for applications like xv that want to set // the location to the current location but miscalculate the // frame size due to kwin being a double-reparenting window // manager if ( new_pos.x() == x() + clientPos().x() && - new_pos.y() == y() + clientPos().y() ) + new_pos.y() == y() + clientPos().y() && gravity == NorthWestGravity ) { new_pos.setX( x()); new_pos.setY( y());