summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-04-25 13:55:28 +0000
committersr55 <[email protected]>2010-04-25 13:55:28 +0000
commitda0ec0271411e2927bbb9590c47dc4dbfd656303 (patch)
tree90068a3c0848d278b92046447e8329ea22efce15 /win/C#/frmMain.cs
parenta2d5e1faded703c38a45dd72e87ba61e564f54e0 (diff)
WinGui:
- Fix an issue with the CLI version check logic. It was checking cached version data before checking the actual CLI data. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3265 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index 763f2d360..f3dd454bb 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -61,9 +61,10 @@ namespace Handbrake
InitializeComponent();
// Update the users config file with the CLI version data.
- lblStatus.Text = "Setting Version Data ...";
+ lblStatus.Text = "Updating and Checking CLI Version Data ...";
Application.DoEvents();
Main.SetCliVersionData();
+ Main.CheckForValidCliVersion();
// Show the form, but leave disabled until preloading is complete then show the main form
this.Enabled = false;