From 6eff7787ccf6f288865fcd2b01ceffb463d0c3ac Mon Sep 17 00:00:00 2001 From: Steven Honson Date: Sat, 11 May 2019 21:58:58 +1000 Subject: 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 Signed-off-by: Jason A. Donenfeld --- ui/tunnelspage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3-59-g8ed1b