aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/tunnelspage.go
diff options
context:
space:
mode:
authorSteven Honson <steven@honson.id.au>2019-05-11 21:58:58 +1000
committerJason A. Donenfeld <Jason@zx2c4.com>2019-05-11 17:33:22 +0200
commit7f03576eb5936ae7d6effb60981a289dad013d7e (patch)
tree10ed5e49cc17cd256dc596ac8e7d390717c6e351 /ui/tunnelspage.go
parentui: use ipc client to list existing tunnels (diff)
downloadwireguard-windows-7f03576eb5936ae7d6effb60981a289dad013d7e.tar.xz
wireguard-windows-7f03576eb5936ae7d6effb60981a289dad013d7e.zip
ui: edit requires further information
As edit generally requires further information from the user, it should be suffixed with an ellipsis. Signed-off-by: Steven Honson <steven@honson.id.au>
Diffstat (limited to 'ui/tunnelspage.go')
-rw-r--r--ui/tunnelspage.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/tunnelspage.go b/ui/tunnelspage.go
index d0b219c9..592e8d4f 100644
--- a/ui/tunnelspage.go
+++ b/ui/tunnelspage.go
@@ -200,7 +200,7 @@ func (tp *TunnelsPage) CreateToolbar() {
contextMenu.Actions().Add(exportAction2)
contextMenu.Actions().Add(walk.NewSeparatorAction())
editAction := walk.NewAction()
- editAction.SetText("Edit selected tunnel")
+ editAction.SetText("Edit selected tunnel...")
editAction.SetShortcut(walk.Shortcut{walk.ModControl, walk.KeyE})
editAction.Triggered().Attach(tp.onEditTunnel)
contextMenu.Actions().Add(editAction)