summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index e40f558f7..94e2cc6d0 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -119,6 +119,9 @@ namespace Handbrake
if (Properties.Settings.Default.tooltipEnable)
ToolTip.Active = true;
+ // Register with Growl (if not using Growl for the encoding completion action, this wont hurt anything)
+ GrowlCommunicator.Register();
+
//Finished Loading
lblStatus.Text = "Loading Complete!";
Application.DoEvents();
@@ -1440,7 +1443,7 @@ namespace Handbrake
dvdInfoPath);
}
- using (StreamReader sr = new StreamReader(dvdInfoPath))
+ using (StreamReader sr = new StreamReader("scanlog.txt"))
{
thisDVD = DVD.Parse(sr);
sr.Close();