From 441976e09b551cd9ff79f2f6e83232e987c82f24 Mon Sep 17 00:00:00 2001 From: dibas Date: Tue, 28 Apr 2015 22:12:39 +0200 Subject: [PATCH] Show the cursor in os x fullscreen by default. Fixes issue 8376. --- Source/Core/DolphinWX/FrameTools.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp index dde3cd4e4f..657fe2d3fa 100644 --- a/Source/Core/DolphinWX/FrameTools.cpp +++ b/Source/Core/DolphinWX/FrameTools.cpp @@ -960,11 +960,6 @@ void CFrame::ToggleDisplayMode(bool bFullscreen) #elif defined(HAVE_XRANDR) && HAVE_XRANDR if (SConfig::GetInstance().m_LocalCoreStartupParameter.strFullscreenResolution != "Auto") m_XRRConfig->ToggleDisplayMode(bFullscreen); -#elif defined __APPLE__ - if (bFullscreen) - CGDisplayHideCursor(CGMainDisplayID()); - else - CGDisplayShowCursor(CGMainDisplayID()); #endif }