dont reposition non-normal/dialog windows when they get focus, such as kde's kicker, if they are off screen. they are special and may be doing this on purpose

This commit is contained in:
Dana Jansens 2002-07-16 03:50:55 +00:00
parent fb613db29f
commit 1d4391b09c

View file

@ -1579,6 +1579,12 @@ bool BlackboxWindow::setInputFocus(void) {
return True; return True;
} }
#endif #endif
/*
We only do this check for normal windows and dialogs because other windows
do this on purpose, such as kde's kicker, and we don't want to go moving
it.
*/
if (window_type == Type_Normal || window_type == Type_Dialog)
if (! frame.rect.intersects(screen->getRect())) { if (! frame.rect.intersects(screen->getRect())) {
// client is outside the screen, move it to the center // client is outside the screen, move it to the center
configure((screen->getWidth() - frame.rect.width()) / 2, configure((screen->getWidth() - frame.rect.width()) / 2,