bug #101 (wxListCtrl::GetItemRect() returns rectangle with incorrect height) fixed
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8157 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -777,7 +777,7 @@ bool wxListCtrl::GetItemRect(long item, wxRect& rect, int code) const
|
||||
rect.x = rect2.left;
|
||||
rect.y = rect2.top;
|
||||
rect.width = rect2.right - rect2.left;
|
||||
rect.height = rect2.bottom - rect2.left;
|
||||
rect.height = rect2.bottom - rect2.top;
|
||||
return success;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user