fix watch combo boxes being cut off

This commit is contained in:
Morilli 2024-10-19 11:29:20 +02:00
parent 59c8125241
commit 8dee116d77
1 changed files with 2 additions and 2 deletions
src/BizHawk.Client.EmuHawk/tools/Watch

View File

@ -50,7 +50,7 @@ namespace BizHawk.Client.EmuHawk
ColumnStyles = { new(), new() },
Location = new(4, 4),
RowStyles = { new(), new(), new(), new(), new(), new() },
Size = new(200, 160),
Size = new(201, 160),
};
var row = 0;
@ -148,7 +148,7 @@ namespace BizHawk.Client.EmuHawk
AutoScaleDimensions = new(6F, 13F);
AutoScaleMode = AutoScaleMode.Font;
CancelButton = Cancel;
ClientSize = new(213, 296);
ClientSize = new(215, 296);
Controls.Add(tlpMain);
Controls.Add(OK);
Controls.Add(Cancel);