Fix Lua forms having a blank title when not specified

This commit is contained in:
YoshiRulz 2024-08-24 17:20:01 +10:00
parent c3057298f9
commit ecaece0488
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ namespace BizHawk.Client.EmuHawk
form.ClientSize = UIHelper.Scale(new Size(width.Value, height.Value));
}
SetText(form, title);
if (!string.IsNullOrWhiteSpace(title)) form.Text = title;
form.MaximizeBox = false;
form.FormBorderStyle = FormBorderStyle.FixedDialog;
form.Icon = SystemIcons.Application;