Fixed a bug with window placement in smart mode where windows are to heigh.

They get placed nicely now.

svn path=/trunk/kdebase/kwin/; revision=65162
This commit is contained in:
Thomas Zander 2000-09-25 09:23:04 +00:00
parent 93b4d2b95d
commit e0e632dfdf

View file

@ -14,7 +14,6 @@ Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
#include <qdatastream.h>
#include <kapp.h>
#include <dcopclient.h>
#include <kdebug.h>
#include <kprocess.h>
#include <netwm.h>
@ -1393,7 +1392,10 @@ void Workspace::smartPlacement(Client* c){
y = possible;
}
}
while( overlap != none && overlap != h_wrong );
while( overlap != none && overlap != h_wrong && y< maxRect.bottom() );
if(ch>= maxRect.height() )
y_optimal=maxRect.top();
// place the window
c->move( x_optimal, y_optimal );