Skip to content

Commit

Permalink
Make QuickView Add window fixed size and scrollable.
Browse files Browse the repository at this point in the history
  • Loading branch information
EosBandi authored and meee1 committed Feb 11, 2024
1 parent 12817f8 commit c9c41e9
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions GCSViews/FlightData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit c9c41e9

Please sign in to comment.