From 256afe3a5e40d6e619773f71c1cae980d94a9e68 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Fri, 4 Jun 2010 22:15:30 +0200 Subject: [PATCH] adjust some process settings --- SparkleShare/SparkleRepo.cs | 2 +- SparkleShare/SparkleUI.cs | 2 +- SparkleShare/SparkleWindow.cs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SparkleShare/SparkleRepo.cs b/SparkleShare/SparkleRepo.cs index 6a9697a4..de2627d5 100644 --- a/SparkleShare/SparkleRepo.cs +++ b/SparkleShare/SparkleRepo.cs @@ -45,7 +45,7 @@ namespace SparkleShare { public SparkleRepo (string RepoPath) { Process = new Process (); - Process.EnableRaisingEvents = false; + Process.EnableRaisingEvents = true; Process.StartInfo.RedirectStandardOutput = true; Process.StartInfo.UseShellExecute = false; diff --git a/SparkleShare/SparkleUI.cs b/SparkleShare/SparkleUI.cs index 707d1d6f..c8917522 100644 --- a/SparkleShare/SparkleUI.cs +++ b/SparkleShare/SparkleUI.cs @@ -29,7 +29,7 @@ namespace SparkleShare { public SparkleUI (bool HideUI) { Process Process = new Process (); - Process.EnableRaisingEvents = false; + Process.EnableRaisingEvents = true; Process.StartInfo.RedirectStandardOutput = true; Process.StartInfo.UseShellExecute = false; diff --git a/SparkleShare/SparkleWindow.cs b/SparkleShare/SparkleWindow.cs index 32ab5f45..88bea327 100644 --- a/SparkleShare/SparkleWindow.cs +++ b/SparkleShare/SparkleWindow.cs @@ -101,7 +101,7 @@ namespace SparkleShare { typeof (string)); Process Process = new Process (); - Process.EnableRaisingEvents = false; + Process.EnableRaisingEvents = true; Process.StartInfo.RedirectStandardOutput = true; Process.StartInfo.UseShellExecute = false; Process.StartInfo.FileName = "git"; @@ -208,7 +208,7 @@ namespace SparkleShare { public ScrolledWindow CreatePeopleList () { Process Process = new Process (); - Process.EnableRaisingEvents = false; + Process.EnableRaisingEvents = true; Process.StartInfo.RedirectStandardOutput = true; Process.StartInfo.UseShellExecute = false;