PCSX2-GUI: Remove hackfix

Future change to be made to fix the height of General Settings.
This commit is contained in:
RedDevilus 2021-08-08 18:46:12 +02:00 committed by lightningterror
parent 52cefc5543
commit 88c2e9ea48
1 changed files with 1 additions and 1 deletions

View File

@ -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 )