From df763abe20f6bbb4d8f918e7f91a865b9219697f Mon Sep 17 00:00:00 2001 From: Sour Date: Sat, 26 Oct 2019 15:06:07 -0400 Subject: [PATCH] UI: Allow 1 line of OSD to show below game selection screen --- UI/Forms/frmMain.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/Forms/frmMain.cs b/UI/Forms/frmMain.cs index 4fb4c96..e32f7c3 100644 --- a/UI/Forms/frmMain.cs +++ b/UI/Forms/frmMain.cs @@ -432,7 +432,7 @@ namespace Mesen.GUI.Forms private void ResizeRecentGames() { - ctrlRecentGames.Height = this.ClientSize.Height - ctrlRecentGames.Top - 5; + ctrlRecentGames.Height = this.ClientSize.Height - ctrlRecentGames.Top - 25; } private void frmMain_Resize(object sender, EventArgs e)