From 4216c2d73d05c3aa7510d4aa2c71a381483d2a3e Mon Sep 17 00:00:00 2001 From: Hoang Pham Anh Duy Date: Fri, 31 May 2024 19:25:14 +0700 Subject: [PATCH] Close mouse settings on main window close (#2654) --- app/Settings.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Settings.cs b/app/Settings.cs index 4aec064b..9a748702 100644 --- a/app/Settings.cs +++ b/app/Settings.cs @@ -1293,6 +1293,8 @@ namespace GHelper if (updatesForm != null && updatesForm.Text != "") updatesForm.Close(); if (matrixForm != null && matrixForm.Text != "") matrixForm.Close(); if (handheldForm != null && handheldForm.Text != "") handheldForm.Close(); + if (mouseSettings != null && mouseSettings.Text != "") mouseSettings.Close(); + } ///