mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 08:09:19 +00:00
Use the global ::wxSetCursor instead of the local one from our panel object. Should close 3956.
This commit is contained in:
parent
88b890824b
commit
884006e4c8
2 changed files with 5 additions and 5 deletions
|
@ -514,14 +514,14 @@ void CFrame::OnActive(wxActivateEvent& event)
|
|||
m_RenderParent->SetFocus();
|
||||
#endif
|
||||
|
||||
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor &&
|
||||
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor &&
|
||||
Core::GetState() == Core::CORE_RUN)
|
||||
m_RenderParent->SetCursor(cursor_transparent);
|
||||
::wxSetCursor(cursor_transparent);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor)
|
||||
m_RenderParent->SetCursor(wxNullCursor);
|
||||
::wxSetCursor(wxNullCursor);
|
||||
}
|
||||
}
|
||||
event.Skip();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue