From 88c2e9ea480c2b7ea577fa1f1b949996aa34560f Mon Sep 17 00:00:00 2001 From: RedDevilus Date: Sun, 8 Aug 2021 18:46:12 +0200 Subject: [PATCH] PCSX2-GUI: Remove hackfix Future change to be made to fix the height of General Settings. --- 3rdparty/wxwidgets3.0/src/common/sizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty/wxwidgets3.0/src/common/sizer.cpp b/3rdparty/wxwidgets3.0/src/common/sizer.cpp index 771e8c45dd..4981e80926 100644 --- a/3rdparty/wxwidgets3.0/src/common/sizer.cpp +++ b/3rdparty/wxwidgets3.0/src/common/sizer.cpp @@ -1043,7 +1043,7 @@ wxSize wxSizer::GetMinSize() void wxSizer::DoSetMinSize(int width, int height) { m_minSize.x = width; - m_minSize.y = height * 1.6; // Hackfix: There is no real fixed height, workaround for general settings where BIOS / Folders / GS Window / Speedhacks and others reside in. + m_minSize.y = height; } bool wxSizer::DoSetItemMinSize( wxWindow *window, int width, int height )