Fix mouse position calculation

This commit is contained in:
Kingcom 2016-01-01 15:26:55 +01:00 committed by Jonathan Li
parent 9f7fd13875
commit c84ca53b4d
1 changed files with 1 additions and 1 deletions

View File

@ -478,7 +478,7 @@ void CtrlRegisterList::mouseEvent(wxMouseEvent& evt)
wxClientDC dc(this);
wxPoint pos = evt.GetPosition();
int x = dc.DeviceToLogicalX(pos.x) + xOffset;
int y = dc.DeviceToLogicalY(pos.y) + yOffset;
int y = dc.DeviceToLogicalY(pos.y) + yOffset * rowHeight;
if (evt.GetEventType() == wxEVT_RIGHT_UP)
{