diff options
author | sr55 <[email protected]> | 2009-11-25 22:59:39 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-11-25 22:59:39 +0000 |
commit | 89e90f79675f8742b5b96b5eaae01367baf76c2f (patch) | |
tree | d7d61378d8d35e8cce2a53a7fada42412107a440 /win/C#/Parsing | |
parent | 4bff40cd0865f37bbc8680883e1db0e22d9247c7 (diff) |
WinGui:
- Large performance improvements in the Activity Window when working with large log files. This should make the window less laggy when using batch folder scan.
- New scan process handling code which pipes the data direct into the application. GUI now displays "Scanning title x of x" to give the user feedback on the process.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2983 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Parsing')
-rw-r--r-- | win/C#/Parsing/Parser.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/Parsing/Parser.cs b/win/C#/Parsing/Parser.cs index 9b0e6459e..b3bca0187 100644 --- a/win/C#/Parsing/Parser.cs +++ b/win/C#/Parsing/Parser.cs @@ -91,7 +91,7 @@ namespace Handbrake.Parsing {
string tmp = base.ReadLine();
- m_buffer += tmp;
+ m_buffer += tmp + Environment.NewLine;
Match m = Regex.Match(tmp, "^Scanning title ([0-9]*) of ([0-9]*)");
if (OnReadLine != null)
OnReadLine(this, tmp);
@@ -106,7 +106,7 @@ namespace Handbrake.Parsing {
string tmp = base.ReadToEnd();
- m_buffer += tmp;
+ m_buffer += tmp + Environment.NewLine;
if (OnReadToEnd != null)
OnReadToEnd(this, tmp);
|