mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
Merge pull request #4610 from ligfx/fixgamelist
DolphinWX: Fix position of GameListCtrl tooltips on macOS
This commit is contained in:
commit
0b6e5765dd
@ -923,7 +923,7 @@ void CGameListCtrl::OnMouseMotion(wxMouseEvent& event)
|
|||||||
GetItemRect(item, Rect);
|
GetItemRect(item, Rect);
|
||||||
int mx = Rect.GetWidth();
|
int mx = Rect.GetWidth();
|
||||||
int my = Rect.GetY();
|
int my = Rect.GetY();
|
||||||
#ifndef __WXMSW__
|
#if !defined(__WXMSW__) && !defined(__WXOSX__)
|
||||||
// For some reason the y position does not account for the header
|
// For some reason the y position does not account for the header
|
||||||
// row, so subtract the y position of the first visible item.
|
// row, so subtract the y position of the first visible item.
|
||||||
GetItemRect(GetTopItem(), Rect);
|
GetItemRect(GetTopItem(), Rect);
|
||||||
|
Loading…
Reference in New Issue
Block a user