From fdcf5aeb75ebd77c16c24a645346019726d8805a Mon Sep 17 00:00:00 2001 From: Michael Maltese Date: Wed, 4 Jan 2017 15:12:40 -0800 Subject: [PATCH] DolphinWX: Fix position of GameListCtrl tooltips on macOS --- Source/Core/DolphinWX/GameListCtrl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/GameListCtrl.cpp b/Source/Core/DolphinWX/GameListCtrl.cpp index 99777b2b4a..c93e29b1ff 100644 --- a/Source/Core/DolphinWX/GameListCtrl.cpp +++ b/Source/Core/DolphinWX/GameListCtrl.cpp @@ -923,7 +923,7 @@ void CGameListCtrl::OnMouseMotion(wxMouseEvent& event) GetItemRect(item, Rect); int mx = Rect.GetWidth(); int my = Rect.GetY(); -#ifndef __WXMSW__ +#if !defined(__WXMSW__) && !defined(__WXOSX__) // For some reason the y position does not account for the header // row, so subtract the y position of the first visible item. GetItemRect(GetTopItem(), Rect);