Browse Source

fix log not scrolled to bottom when first shown

tags/2.5.2
clowwindy 10 years ago
parent
commit
7425e09ebc
2 changed files with 6 additions and 0 deletions
  1. +1
    -0
      shadowsocks-csharp/View/LogForm.Designer.cs
  2. +5
    -0
      shadowsocks-csharp/View/LogForm.cs

+ 1
- 0
shadowsocks-csharp/View/LogForm.Designer.cs View File

@@ -95,6 +95,7 @@
this.Text = "Log Viewer";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LogForm_FormClosing);
this.Load += new System.EventHandler(this.LogForm_Load);
this.Shown += new System.EventHandler(this.LogForm_Shown);
this.ResumeLayout(false);
this.PerformLayout();


+ 5
- 0
shadowsocks-csharp/View/LogForm.cs View File

@@ -105,5 +105,10 @@ namespace Shadowsocks.View
{
this.Close();
}
private void LogForm_Shown(object sender, EventArgs e)
{
textBox1.ScrollToCaret();
}
}
}

Loading…
Cancel
Save