Do the miscalculated-place-at-the-same-position hack only
if it comes from an application. svn path=/trunk/KDE/kdebase/workspace/; revision=548841
This commit is contained in:
parent
b8a472a4df
commit
5646eafb33
1 changed files with 2 additions and 2 deletions
|
@ -1384,8 +1384,8 @@ void Client::configureRequest( int value_mask, int rx, int ry, int rw, int rh, i
|
|||
// 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() && gravity == NorthWestGravity )
|
||||
if ( new_pos.x() == x() + clientPos().x() && new_pos.y() == y() + clientPos().y()
|
||||
&& gravity == NorthWestGravity && !from_tool )
|
||||
{
|
||||
new_pos.setX( x());
|
||||
new_pos.setY( y());
|
||||
|
|
Loading…
Reference in a new issue