[watcher] ignore files in .git/

This commit is contained in:
Hylke Bons 2011-03-13 22:26:01 +00:00
parent 31aa7e91bc
commit 52a7d746fd

View file

@ -507,6 +507,9 @@ namespace SparkleLib {
// Starts a timer when something changes
private void OnFileActivity (object o, FileSystemEventArgs fse_args)
{
if (fse_args.Name.StartsWith (".git/"))
return;
WatcherChangeTypes wct = fse_args.ChangeType;