服务器拖动排序:修复了插入线有时不消失的问题

This commit is contained in:
bin456789 2022-03-15 12:28:07 +08:00
parent bf0c6791e6
commit 617d5b1c86
No known key found for this signature in database
GPG key ID: EE301B386DE6C11B

View file

@ -1768,6 +1768,7 @@ namespace v2rayN.Forms
private void lvServers_ItemDrag(object sender, ItemDragEventArgs e)
{
lvServers.DoDragDrop(e.Item, DragDropEffects.Move);
lvServers.InsertionMark.Index = -1;
}
#endregion