From 61755ed01759fbc9ed9cc47525923dfb084ccd6e Mon Sep 17 00:00:00 2001 From: Zangetsu38 Date: Tue, 13 Oct 2015 12:44:35 +0200 Subject: [PATCH] Fix Full screen in DX12 --- rpcs3/Gui/GSFrame.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/rpcs3/Gui/GSFrame.cpp b/rpcs3/Gui/GSFrame.cpp index 6353821ddc..f49721974e 100644 --- a/rpcs3/Gui/GSFrame.cpp +++ b/rpcs3/Gui/GSFrame.cpp @@ -23,6 +23,7 @@ GSFrame::GSFrame(const wxString& title) : wxFrame(nullptr, wxID_ANY, "GSFrame[" SetClientSize(res.width, res.height); wxGetApp().Bind(wxEVT_KEY_DOWN, &GSFrame::OnKeyDown, this); Bind(wxEVT_CLOSE_WINDOW, &GSFrame::OnClose, this); + Bind(wxEVT_LEFT_DCLICK, &GSFrame::OnLeftDclick, this); } void GSFrame::OnPaint(wxPaintEvent& event)