summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-08-14 10:53:41 +0000
committersr55 <[email protected]>2011-08-14 10:53:41 +0000
commit689e8917e82cae5d68341f5d618dba050ddfc0b9 (patch)
tree284816650d95e943213a076969ffdfd8fc55acb1 /win
parent566fb1b3eb040d268f5d546778b665271194aabb (diff)
WinGui: Fix an issue with Multi-instance detection.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4172 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Utilities/GeneralUtilities.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Utilities/GeneralUtilities.cs b/win/CS/HandBrake.ApplicationServices/Utilities/GeneralUtilities.cs
index 0ad9b6a8d..40317d8b7 100644
--- a/win/CS/HandBrake.ApplicationServices/Utilities/GeneralUtilities.cs
+++ b/win/CS/HandBrake.ApplicationServices/Utilities/GeneralUtilities.cs
@@ -140,7 +140,7 @@ namespace HandBrake.ApplicationServices.Utilities
{
get
{
- return Process.GetProcessesByName("HandBrake").Length > 0 ? true : false;
+ return Process.GetProcessesByName("HandBrake").Length > 1 ? true : false;
}
}