diff --git a/CreamInstaller/CreamInstaller.csproj b/CreamInstaller/CreamInstaller.csproj index d4fadd0..cc87462 100644 --- a/CreamInstaller/CreamInstaller.csproj +++ b/CreamInstaller/CreamInstaller.csproj @@ -5,7 +5,7 @@ True Resources\ini.ico true - 3.6.1.1 + 3.6.1.2 Resources\ini.ico LICENSE 2021, pointfeev (https://github.com/pointfeev) diff --git a/CreamInstaller/Forms/SelectForm.cs b/CreamInstaller/Forms/SelectForm.cs index ae5b838..d0b09e2 100644 --- a/CreamInstaller/Forms/SelectForm.cs +++ b/CreamInstaller/Forms/SelectForm.cs @@ -638,7 +638,7 @@ internal partial class SelectForm : CustomForm TreeNode node = e.Node; if (node is null || !node.Bounds.Contains(e.Location) || e.Button != MouseButtons.Right || e.Clicks != 1) return; - using ContextMenuStrip contextMenuStrip = new(); + ContextMenuStrip contextMenuStrip = new(); selectionTreeView.SelectedNode = node; string id = node.Name; Platform platform = (Platform)node.Tag;