From df41be506c8b887593987e8cfd38bafbb8aecefc Mon Sep 17 00:00:00 2001 From: GittyMac Date: Sun, 22 Nov 2020 18:46:23 -0500 Subject: [PATCH] Fix customF crash --- OpenFK/Form1.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenFK/Form1.cs b/OpenFK/Form1.cs index 9f8bc0c..7739622 100644 --- a/OpenFK/Form1.cs +++ b/OpenFK/Form1.cs @@ -109,6 +109,7 @@ namespace OpenFK | NotifyFilters.FileName | NotifyFilters.DirectoryName; watcher.Filter = "customF.txt"; watcher.Changed += OnChanged; + watcher.SynchronizingObject = AS2Container; watcher.EnableRaisingEvents = true; } //End of customF Initialization