CVS commit by ravi: Work around bug in screenGeometry(). CCMAIL 72465-done@bugs.kde.org M +2 -2 wndstatus.cpp 1.10 --- kdebase/ksplashml/themeengine/standard/wndstatus.cpp #1.9:1.10 @@ -31,5 +31,5 @@ // the bottom of the screen, so the user always knows what's // happening to his system. -WndStatus::WndStatus( QPalette pal, +WndStatus::WndStatus( QPalette /*pal*/, int xineramaScreen, bool atTop, bool pbVisible, @@ -82,5 +82,5 @@ WndStatus::WndStatus( QPalette pal, move( rect.topLeft() ); else - move( rect.bottomLeft().x(), rect.bottomLeft().y()-height() ); + move( rect.bottomLeft().x(), rect.bottomLeft().y()-height()+1 ); // The +1 is to work around a bug in screenGeometry(). if (!pbVisible)