From 49295f8eff735106797da2eade9197f7615ed374 Mon Sep 17 00:00:00 2001 From: Oil Date: Thu, 5 Jun 2014 19:21:06 +0400 Subject: [PATCH] Fixed a scrollbar issue. --- rpcs3/Gui/ConLog.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rpcs3/Gui/ConLog.cpp b/rpcs3/Gui/ConLog.cpp index 54177b0aea..a77b486007 100644 --- a/rpcs3/Gui/ConLog.cpp +++ b/rpcs3/Gui/ConLog.cpp @@ -328,6 +328,8 @@ void LogFrame::Settings(wxCommandEvent& WXUNUSED(event)) void LogFrame::UpdateListSize(wxSizeEvent& event) { - m_log.SetSize(this->GetSize()); + int width, height; + this->DoGetSize(&width, &height); + m_log.SetSize(wxSize(width-15, height-55)); event.Skip(); } \ No newline at end of file