Skip to content

Commit

Permalink
fix: ability to resize AboutBox form (#188)
Browse files Browse the repository at this point in the history
fixes #163
  • Loading branch information
mega5800 authored Apr 23, 2024
1 parent dd7d10d commit 83e57cf
Show file tree
Hide file tree
Showing 2 changed files with 146 additions and 143 deletions.
280 changes: 140 additions & 140 deletions src/LessMsi.Gui/AboutBox.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions src/LessMsi.Gui/AboutBox.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using LessMsi.Gui.Properties;
using System;
using System.Diagnostics;
using System.Reflection;
using System.Windows.Forms;
Expand All @@ -14,7 +15,9 @@ public AboutBox()
this.labelProductName.Text = AssemblyProduct;
this.labelVersion.Text = String.Format("Version {0}", AssemblyVersion);
this.labelCopyright.Text = AssemblyCopyright;
}

Icon = Resources.LessmsiIcon;
}

#region Assembly Attribute Accessors

Expand Down Expand Up @@ -115,4 +118,4 @@ private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs
Process.Start(link);
}
}
}
}

0 comments on commit 83e57cf

Please sign in to comment.