Fixed many Kephal bugs.

BUG: 173017

svn path=/trunk/KDE/kdebase/workspace/; revision=910287
This commit is contained in:
Guillaume Pothier 2009-01-12 23:45:03 +00:00
parent f827f1db97
commit b362b980cb

View file

@ -209,6 +209,8 @@ void Workspace::updateClientArea( bool force )
++it)
(*it)->checkWorkspacePosition();
}
kDebug(1212) << "Done.";
}
void Workspace::updateClientArea()
@ -230,7 +232,9 @@ QRect Workspace::clientArea( clientAreaOption opt, int screen, int desktop ) con
desktop = currentDesktop();
if( screen == -1 )
screen = activeScreen();
QRect sarea = !screenarea.isEmpty() // may be empty during KWin initialization
QRect sarea = (!screenarea.isEmpty()
&& screen < screenarea[ desktop ].size()) // screens may be missing during KWin initialization or screen config changes
? screenarea[ desktop ][ screen ]
: Kephal::ScreenUtils::screenGeometry( screen );
QRect warea = workarea[ desktop ].isNull()