diff options
author | sr55 <[email protected]> | 2010-08-16 19:28:22 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-08-16 19:28:22 +0000 |
commit | 95628b04abdae3aa6b53f7eaf2bd0fbc89a5ff4f (patch) | |
tree | e9144109db1ff6420c92797e6267ac92a896d513 /win/C#/Functions | |
parent | 52600ac97a512c853cc9a154ceb68a769b600d3f (diff) |
WinGui:
- Tidy the Options window, removed old debug code that isn't needed.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3482 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions')
-rw-r--r-- | win/C#/Functions/Main.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/C#/Functions/Main.cs b/win/C#/Functions/Main.cs index ebc3f3836..e6f8e0769 100644 --- a/win/C#/Functions/Main.cs +++ b/win/C#/Functions/Main.cs @@ -278,8 +278,10 @@ namespace Handbrake.Functions // 1 = Build Date
DateTime lastModified = File.GetLastWriteTime("HandBrakeCLI.exe");
- if (Properties.Settings.Default.cliLastModified == lastModified && Properties.Settings.Default.hb_build != 0)
+ if (Properties.Settings.Default.hb_build != 0 && Properties.Settings.Default.cliLastModified == lastModified )
+ {
return;
+ }
Properties.Settings.Default.cliLastModified = lastModified;
|