]> git.saurik.com Git - wxWidgets.git/commitdiff
Revert "Fix off by 1 error in wxGenericListCtrl::HitTest()."
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 3 Mar 2013 12:19:20 +0000 (12:19 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 3 Mar 2013 12:19:20 +0000 (12:19 +0000)
Revert r73563, this breaks the selection in the control apparently.

See #15063.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73596 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/changes.txt
src/generic/listctrl.cpp

index 52b72d39e9f5f3e3546ae9866e4cbf984f11722f..74939c4f0e1b355e18e353f7f8495515d850a57d 100644 (file)
@@ -621,7 +621,6 @@ All (GUI):
 - Add wxMask::GetBitmap() for wxMSW, wxGTK and wxOSX
 - Add wxCheckListBox::GetCheckedItems() (hartwigw).
 - Add wxAUI_TB_PLAIN_BACKGROUND wxAuiToolBar style (Allann Jones).
-- Fix off by 1 error in wxGenericListCtrl::HitTest() (Daniel Hyams).
 - Make wxGenericDataViewCtrl::SetFont() really work (Laurent Poujoulat).
 
 wxGTK:
index caebe00001f54bc9b2008541402a5a6b0dffde32..b311e031eff67ba789fe96a2a30d8b37906bce6a 100644 (file)
@@ -4144,10 +4144,6 @@ long wxListMainWindow::HitTest( int x, int y, int &flags ) const
 
     if ( InReportView() )
     {
-        // Account for the header height if it's present.
-        if ( HasHeader() )
-            y -= GetListCtrl()->m_headerWin->GetSize().y + 1;
-
         size_t current = y / GetLineHeight();
         if ( current < count )
         {