Browse Source

bugfix

pull/690/head 3.15.1
2dust 5 years ago
parent
commit
2f65575fdf
  1. 4
      v2rayN/v2rayN/Forms/MainForm.cs
  2. 2
      v2rayN/v2rayN/Properties/AssemblyInfo.cs

4
v2rayN/v2rayN/Forms/MainForm.cs

@ -268,7 +268,6 @@ namespace v2rayN.Forms
if (lvItem != null) lvServers.Items.Add(lvItem);
}
lvServers.EnsureVisible(config.index);
lvServers.EndUpdate();
//if (lvServers.Items.Count > 0)
@ -1025,7 +1024,10 @@ namespace v2rayN.Forms
this.ShowInTaskbar = true;
//this.notifyIcon1.Visible = false;
this.txtMsgBox.ScrollToCaret();
if (config.index >= 0 && config.index < lvServers.Items.Count)
{
lvServers.EnsureVisible(config.index); // workaround
}
SetVisibleCore(true);
}

2
v2rayN/v2rayN/Properties/AssemblyInfo.cs

@ -32,4 +32,4 @@ using System.Runtime.InteropServices;
// 方法是按如下所示使用“*”:
//[assembly: AssemblyVersion("1.0.*")]
//[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyFileVersion("3.15")]
[assembly: AssemblyFileVersion("3.15.1")]

Loading…
Cancel
Save