We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e7ee4d commit 1b68277Copy full SHA for 1b68277
AMP4SCS/AMP4SCS.csproj
@@ -6,6 +6,7 @@
6
<UseWindowsForms>true</UseWindowsForms>
7
<AssemblyName>AdvancedModPackerforSCSGames</AssemblyName>
8
<RootNamespace>AdvancedETS2Packer</RootNamespace>
9
+ <Version>1.0.2</Version>
10
</PropertyGroup>
11
12
<ItemGroup>
AMP4SCS/PackingDialog.cs
@@ -34,10 +34,12 @@ public PackingDialog()
34
/// <param name="status">Status string, that will be displayed on form.</param>
35
public void UpdateStatus(string status)
36
{
37
- Invoke((MethodInvoker)delegate
38
- {
39
- lblStatus.Text = LocRM.GetString(status);
40
- });
+ if (this.IsHandleCreated) {
+ Invoke((MethodInvoker)delegate
+ {
+ lblStatus.Text = LocRM.GetString(status);
41
+ });
42
+ }
43
}
44
45
0 commit comments