aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/tunnelspage.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-05-03 00:20:59 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2019-05-03 00:20:59 +0200
commit0246b65c3537dc59a748103521ffcfd42816c5b4 (patch)
treeab72746821f4a6eb923beb22f26e8b9da96ffe9c /ui/tunnelspage.go
parentui: fix version strings (diff)
downloadwireguard-windows-0246b65c3537dc59a748103521ffcfd42816c5b4.tar.xz
wireguard-windows-0246b65c3537dc59a748103521ffcfd42816c5b4.zip
ui: double buffer list view
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r--ui/tunnelspage.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/tunnelspage.go b/ui/tunnelspage.go
index c2e555cf..ba5f7c3f 100644
--- a/ui/tunnelspage.go
+++ b/ui/tunnelspage.go
@@ -55,7 +55,7 @@ func NewTunnelsPage() (*TunnelsPage, error) {
//TODO: deal with remaining disposables in case the next line fails
- if tp.tunnelsView, err = NewTunnelsView(tunnelsContainer); err != nil {
+ if tp.tunnelsView, err = NewListView(tunnelsContainer); err != nil {
return nil, err
}
tp.tunnelsView.ItemActivated().Attach(tp.onTunnelsViewItemActivated)