diff --git a/GCSViews/FlightData.cs b/GCSViews/FlightData.cs index 95e6842d26..9ae6b7f43f 100644 --- a/GCSViews/FlightData.cs +++ b/GCSViews/FlightData.cs @@ -4353,14 +4353,15 @@ private void quickView_DoubleClick(object sender, EventArgs e) Form selectform = new Form { Name = "select", - Width = 50, - Height = 50, + Width = MainV2.instance.Width - 100, + Height = MainV2.instance.Height - 100, Text = "Display This", - AutoSize = true, + AutoSize = false, StartPosition = FormStartPosition.CenterParent, MaximizeBox = false, MinimizeBox = false, - AutoScroll = true + AutoScroll = true, + FormBorderStyle = FormBorderStyle.FixedDialog }; ThemeManager.ApplyThemeTo(selectform);