Browse Source

Fix #779

Signed-off-by: Syrone Wong <wong.syrone@gmail.com>
tags/3.3.4
Syrone Wong 8 years ago
parent
commit
131114f0c2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      shadowsocks-csharp/View/ConfigForm.cs

+ 1
- 1
shadowsocks-csharp/View/ConfigForm.cs View File

@@ -296,7 +296,7 @@ namespace Shadowsocks.View
{
int index = ServersListBox.SelectedIndex;
Server server = _modifiedConfiguration.configs[index];
object item = ServersListBox.SelectedItem;
object item = ServersListBox.Items[index];
_modifiedConfiguration.configs.Remove(server);
_modifiedConfiguration.configs.Insert(index + step, server);


Loading…
Cancel
Save