Touch-up for `RecordMovie` Mono hack

This commit is contained in:
YoshiRulz 2022-06-10 09:30:12 +10:00
parent 2d015515b2
commit a98e3f3610
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 3 additions and 2 deletions

View File

@ -42,8 +42,9 @@ namespace BizHawk.Client.EmuHawk
if (OSTailoredCode.IsUnixHost) Load += (_, _) =>
{
//HACK to make this usable on Linux. No clue why this Form in particular is so much worse, maybe the GroupBox? --yoshi
DefaultAuthorCheckBox.Location += new Size(0, 20);
var s = new Size(0, 36);
groupBox1.Height -= 24;
DefaultAuthorCheckBox.Location += new Size(0, 32);
var s = new Size(0, 40);
OK.Location += s;
Cancel.Location += s;
};