Fixed off-by-one error in mousePosition()

svn path=/trunk/kdebase/kwin/; revision=101425
This commit is contained in:
Rik Hemsley 2001-06-10 21:59:22 +00:00
parent 71618ff55c
commit d8ba9584a1

View file

@ -449,7 +449,7 @@ void MwmClient::paintEvent( QPaintEvent* )
Client::MousePosition MwmClient::mousePosition( const QPoint& p ) const
{
const int range = s_frameWidth + s_buttonSize;
const int border = s_frameWidth;
const int border = s_frameWidth + 1;
MousePosition m = Nowhere;