diff --git a/SparkleShare/SparkleUI.cs b/SparkleShare/SparkleUI.cs index 1b734f73..2ea6d9b7 100644 --- a/SparkleShare/SparkleUI.cs +++ b/SparkleShare/SparkleUI.cs @@ -124,7 +124,8 @@ namespace SparkleShare { // Watch the SparkleShare folder and pop up the // Add dialog when a new folder is created - FileSystemWatcher Watcher = new FileSystemWatcher (SparklePaths.SparklePath); + // TODO: This crashes +/* FileSystemWatcher Watcher = new FileSystemWatcher (SparklePaths.SparklePath); Watcher.IncludeSubdirectories = false; Watcher.EnableRaisingEvents = true; Watcher.Created += delegate (object o, FileSystemEventArgs args) { @@ -134,6 +135,7 @@ namespace SparkleShare { SparkleDialog SparkleDialog = new SparkleDialog (); SparkleDialog.ShowAll (); }; +*/ // Create place to store configuration user's home folder string ConfigPath = SparklePaths.SparkleConfigPath; @@ -158,7 +160,6 @@ namespace SparkleShare { if (!File.Exists (NotifySettingFile)) File.Create (NotifySettingFile); - } }