# | 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 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |