Fixed off-by-one error in mousePosition()
svn path=/trunk/kdebase/kwin/; revision=101425
This commit is contained in:
parent
71618ff55c
commit
d8ba9584a1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue