diff options
author | sr55 <[email protected]> | 2008-10-04 13:52:57 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-10-04 13:52:57 +0000 |
commit | 62fdeb573866ed7181ee77bac63e5fb9d5ce6226 (patch) | |
tree | 4e4024a657fe82a17facd63e0d0f69b094768718 /win/C#/frmActivityWindow.cs | |
parent | 25f19b416417df8ab55580a0e56399a1e88f8fa4 (diff) |
WinGui:
- Few more improvements to the ActivityWindow. Hopefully makes it a bit more user friendly.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1808 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmActivityWindow.cs')
-rw-r--r-- | win/C#/frmActivityWindow.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/C#/frmActivityWindow.cs b/win/C#/frmActivityWindow.cs index 6d46a449c..c0911eaca 100644 --- a/win/C#/frmActivityWindow.cs +++ b/win/C#/frmActivityWindow.cs @@ -49,9 +49,9 @@ namespace Handbrake startLogThread(read_file);
if (file == "dvdinfo.dat")
- txt_log.Text = "Selected Log: Scan Log";
+ txt_log.Text = "Scan Log";
else if (file == "hb_encode_log.dat")
- txt_log.Text = "Selected Log: Encode Log";
+ txt_log.Text = "Encode Log";
// When the window closes, we want to abort the monitor thread.
@@ -110,7 +110,7 @@ namespace Handbrake read_file = "dvdinfo.dat";
displayLogHeader();
startLogThread(read_file);
- txt_log.Text = "Selected Log: Scan Log";
+ txt_log.Text = "Scan Log";
}
/// <summary>
@@ -128,7 +128,7 @@ namespace Handbrake position = 0;
displayLogHeader();
startLogThread(read_file);
- txt_log.Text = "Selected Log: Encode Log";
+ txt_log.Text = "Encode Log";
}
/// <summary>
|