This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
youys
/
shadowsocks-windows
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
67
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
fix log not scrolled to bottom when first shown
tags/2.5.2
clowwindy
10 years ago
parent
e1a90da2a4
commit
7425e09ebc
2 changed files
with
6 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
shadowsocks-csharp/View/LogForm.Designer.cs
+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();
}
}
}
Write
Preview
Loading…
Cancel
Save