Fixed the problem that the statistics column would not be hidden

pull/6126/head
2dust 6 days ago
parent 2e32de2fbb
commit 10513e0f3b

@ -356,7 +356,7 @@ namespace v2rayN.Desktop.Views
item2.Width = new DataGridLength(item.Width, DataGridLengthUnitType.Pixel); item2.Width = new DataGridLength(item.Width, DataGridLengthUnitType.Pixel);
item2.DisplayIndex = displayIndex++; item2.DisplayIndex = displayIndex++;
} }
if (item.Name.StartsWith("to")) if (item.Name.ToLower().StartsWith("to"))
{ {
if (!_config.GuiItem.EnableStatistics) if (!_config.GuiItem.EnableStatistics)
{ {

@ -338,7 +338,7 @@ namespace v2rayN.Views
item2.Width = item.Width; item2.Width = item.Width;
item2.DisplayIndex = displayIndex++; item2.DisplayIndex = displayIndex++;
} }
if (item.Name.StartsWith("to")) if (item.Name.ToLower().StartsWith("to"))
{ {
if (!_config.GuiItem.EnableStatistics) if (!_config.GuiItem.EnableStatistics)
{ {

Loading…
Cancel
Save