From 28456170537af065c12660f250706e7debcaae50 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Sun, 30 Apr 2017 18:21:15 +0300 Subject: [PATCH] Hide cursor in GSFrame Implements #2054 --- rpcs3/Gui/GSFrame.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/rpcs3/Gui/GSFrame.cpp b/rpcs3/Gui/GSFrame.cpp index 73d35d71c..64a58fcc0 100644 --- a/rpcs3/Gui/GSFrame.cpp +++ b/rpcs3/Gui/GSFrame.cpp @@ -17,6 +17,7 @@ GSFrame::GSFrame(const wxString& title, int w, int h) { m_render = title; SetIcon(wxGetApp().m_MainFrame->GetIcon()); + SetCursor(wxCursor(wxImage(1, 1))); SetClientSize(w, h); wxGetApp().Bind(wxEVT_KEY_DOWN, &GSFrame::OnKeyDown, this);