From: Julian Smart Date: Thu, 19 Jan 2006 11:03:56 +0000 (+0000) Subject: Applied patch [ 1378183 ] Mac: wxNotebook::HitTest off by one X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/eb5d9594dba44ee3bdec54dc085f74cfabcdf9b7?ds=inline Applied patch [ 1378183 ] Mac: wxNotebook::HitTest off by one git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36999 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/notebmac.cpp b/src/mac/carbon/notebmac.cpp index dbea2f1022..1e6e98a239 100644 --- a/src/mac/carbon/notebmac.cpp +++ b/src/mac/carbon/notebmac.cpp @@ -353,7 +353,7 @@ int wxNotebook::HitTest(const wxPoint& pt, long * flags) const } if ( outPart >= 1 && outPart <= countPages ) - resultV = outPart ; + resultV = outPart - 1 ; #endif // TARGET_API_MAC_OSX if (flags != NULL) @@ -361,7 +361,7 @@ int wxNotebook::HitTest(const wxPoint& pt, long * flags) const *flags = 0; // we cannot differentiate better - if (resultV >= 1) + if (resultV >= 0) *flags |= wxNB_HITTEST_ONLABEL; else *flags |= wxNB_HITTEST_NOWHERE;