From d8ba9584a1ee88219f177951bc16a18bbca4b19d Mon Sep 17 00:00:00 2001 From: Rik Hemsley Date: Sun, 10 Jun 2001 21:59:22 +0000 Subject: [PATCH] Fixed off-by-one error in mousePosition() svn path=/trunk/kdebase/kwin/; revision=101425 --- clients/mwm/mwmclient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/mwm/mwmclient.cpp b/clients/mwm/mwmclient.cpp index af3b3512e7..f56e4c9d3f 100644 --- a/clients/mwm/mwmclient.cpp +++ b/clients/mwm/mwmclient.cpp @@ -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;