From a8e019228136329f5cfcb92e1eb7f51bd94286f1 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Wed, 7 Dec 2022 07:39:22 +1000 Subject: [PATCH] Use FLPs so UI scale doesn't break Record Movie dialog (see #2605) disables resizing the dialog; default is big enough and the `TextBox`es can scroll --- .../movie/RecordMovie.cs | 23 ++++++++++++------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/movie/RecordMovie.cs b/src/BizHawk.Client.EmuHawk/movie/RecordMovie.cs index 315e33ac70..467a048a43 100644 --- a/src/BizHawk.Client.EmuHawk/movie/RecordMovie.cs +++ b/src/BizHawk.Client.EmuHawk/movie/RecordMovie.cs @@ -148,25 +148,32 @@ namespace BizHawk.Client.EmuHawk AutoScaleMode = AutoScaleMode.Font; CancelButton = Cancel; ClientSize = new(478, 163); + FormBorderStyle = FormBorderStyle.FixedDialog; Icon = Properties.Resources.TAStudioIcon; MaximizeBox = false; - MaximumSize = new(1440, 201); MinimizeBox = false; - MinimumSize = new(425, 201); StartPosition = FormStartPosition.CenterParent; Text = "Record Movie"; - Controls.Add(groupBox1); - Controls.Add(OK); - Controls.Add(Cancel); + Controls.Add(new FlowLayoutPanel + { + Controls = + { + groupBox1, + new SingleRowFLP + { + Controls = { OK, Cancel }, + }, + }, + FlowDirection = FlowDirection.RightToLeft, // going for two rows so the buttons are right-aligned + Margin = Padding.Empty, + Size = new(464, 144), + }); Load += RecordMovie_Load; 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 groupBox1.Height -= 24; DefaultAuthorCheckBox.Location += new Size(0, 32); - var s = new Size(0, 40); - OK.Location += s; - Cancel.Location += s; }; groupBox1.ResumeLayout(performLayout: false);