aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/listview.go8
-rw-r--r--ui/tray.go5
-rw-r--r--ui/tunnelspage.go3
3 files changed, 8 insertions, 8 deletions
diff --git a/ui/listview.go b/ui/listview.go
index c4f5186b..2e9ee3a7 100644
--- a/ui/listview.go
+++ b/ui/listview.go
@@ -6,8 +6,8 @@
package ui
import (
+ "golang.zx2c4.com/wireguard/windows/conf"
"sort"
- "strings"
"sync/atomic"
"github.com/lxn/walk"
@@ -43,8 +43,7 @@ func (t *ListModel) Value(row, col int) interface{} {
func (t *ListModel) Sort(col int, order walk.SortOrder) error {
sort.SliceStable(t.tunnels, func(i, j int) bool {
- //TODO: use real string comparison for sorting with proper tunnel order
- return t.tunnels[i].Name < t.tunnels[j].Name
+ return conf.TunnelNameIsLess(t.tunnels[i].Name, t.tunnels[j].Name)
})
return t.SorterBase.Sort(col, order)
@@ -201,8 +200,7 @@ func (tv *ListView) Load(asyncUI bool) {
firstTunnelName := ""
for tunnel := range newTunnels {
if !oldTunnels[tunnel] {
- //TODO: use proper tunnel string sorting/comparison algorithm, as the other comments indicate too.
- if len(firstTunnelName) == 0 || strings.Compare(firstTunnelName, tunnel.Name) > 0 {
+ if len(firstTunnelName) == 0 || !conf.TunnelNameIsLess(firstTunnelName, tunnel.Name) {
firstTunnelName = tunnel.Name
}
tv.model.tunnels = append(tv.model.tunnels, tunnel)
diff --git a/ui/tray.go b/ui/tray.go
index c5902359..27b03f72 100644
--- a/ui/tray.go
+++ b/ui/tray.go
@@ -7,6 +7,7 @@ package ui
import (
"fmt"
+ "golang.zx2c4.com/wireguard/windows/conf"
"sort"
"strings"
@@ -168,7 +169,9 @@ func (tray *Tray) addTunnelAction(tunnel *service.Tunnel) {
for name := range tray.tunnels {
names = append(names, name)
}
- sort.Strings(names) //TODO: use correct sorting order for this
+ sort.SliceStable(names, func(i, j int) bool {
+ return conf.TunnelNameIsLess(names[i], names[j])
+ })
var (
idx int
diff --git a/ui/tunnelspage.go b/ui/tunnelspage.go
index 8bcf6aaa..c2521a6b 100644
--- a/ui/tunnelspage.go
+++ b/ui/tunnelspage.go
@@ -314,8 +314,7 @@ func (tp *TunnelsPage) importFiles(paths []string) {
// Add in reverse order so that the first one is selected.
sort.Slice(unparsedConfigs, func(i, j int) bool {
- //TODO: use proper tunnel string sorting/comparison algorithm, as the other comments indicate too.
- return strings.Compare(unparsedConfigs[i].Name, unparsedConfigs[j].Name) > 0
+ return conf.TunnelNameIsLess(unparsedConfigs[j].Name, unparsedConfigs[i].Name)
})
existingTunnelList, err := service.IPCClientTunnels()