ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.Logging/LogWriter.cs
(Generate patch)

Comparing trunk/RomCheater.Logging/LogWriter.cs (file contents):
Revision 306 by william, Tue Jun 5 13:46:05 2012 UTC vs.
Revision 307 by william, Tue Jun 5 13:49:07 2012 UTC

# Line 43 | Line 43 | namespace RomCheater.Logging
43              //sw = new StreamWriter(ms);
44              //sw.AutoFlush = true;
45              //sr = new StreamReader(ms);
46 +
47 +                chkAutoScroll.Checked = this.AutoScroll;
48          }
49          private LogStream _Log;
50          public LogStream Log { get { return _Log; } private set { _Log = value; } }
# Line 341 | Line 343 | namespace RomCheater.Logging
343              txtLog.SelectionStart = 0;
344              txtLog.ScrollToCaret();
345          }
346 +
347 +        private void chkAutoScroll_CheckedChanged(object sender, EventArgs e)
348 +        {
349 +            this.AutoScroll = chkAutoScroll.Checked;
350 +        }
351      }
352   }
353  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines