Browse Source

继续修正统计列次序调整

pull/453/head
YFdyh000 5 years ago
parent
commit
dda920e33e
  1. 6
      v2rayN/v2rayN/Forms/MainForm.cs

6
v2rayN/v2rayN/Forms/MainForm.cs

@ -1024,10 +1024,10 @@ namespace v2rayN.Forms
lvServers.SuspendLayout();
var indexStart = 9;
lvServers.Items[i].SubItems[indexStart++].Text = Utils.HumanFy(statistics[index].totalUp);
lvServers.Items[i].SubItems[indexStart++].Text = Utils.HumanFy(statistics[index].totalDown);
lvServers.Items[i].SubItems[indexStart++].Text = Utils.HumanFy(statistics[index].todayUp);
lvServers.Items[i].SubItems[indexStart++].Text = Utils.HumanFy(statistics[index].todayDown);
lvServers.Items[i].SubItems[indexStart++].Text = Utils.HumanFy(statistics[index].todayUp);
lvServers.Items[i].SubItems[indexStart++].Text = Utils.HumanFy(statistics[index].totalDown);
lvServers.Items[i].SubItems[indexStart++].Text = Utils.HumanFy(statistics[index].totalUp);
lvServers.ResumeLayout();
});

Loading…
Cancel
Save