From 37acc66edce0d76ac364d9121d4491853f2e2542 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 25 Jun 2019 19:41:55 +0200 Subject: ui: remove clone --- ui/tunnelspage.go | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) (limited to 'ui/tunnelspage.go') diff --git a/ui/tunnelspage.go b/ui/tunnelspage.go index 26a0a291..64b081de 100644 --- a/ui/tunnelspage.go +++ b/ui/tunnelspage.go @@ -203,10 +203,6 @@ func (tp *TunnelsPage) CreateToolbar() { editAction.Triggered().Attach(tp.onEditTunnel) contextMenu.Actions().Add(editAction) tp.ShortcutActions().Add(editAction) - cloneAction := walk.NewAction() - cloneAction.SetText("Clone selected tunnel...") - cloneAction.Triggered().Attach(tp.onCloneTunnel) - contextMenu.Actions().Add(cloneAction) deleteAction2 := walk.NewAction() deleteAction2.SetText("Remove selected tunnel(s)") deleteAction2.SetShortcut(walk.Shortcut{0, walk.KeyDelete}) @@ -230,7 +226,6 @@ func (tp *TunnelsPage) CreateToolbar() { toggleAction.SetEnabled(selected == 1) selectAllAction.SetEnabled(selected < all) editAction.SetEnabled(selected == 1) - cloneAction.SetEnabled(selected == 1) } tp.listView.SelectedIndexesChanged().Attach(setSelectionOrientedOptions) setSelectionOrientedOptions() @@ -424,7 +419,7 @@ func (tp *TunnelsPage) onEditTunnel() { return } - if config := runTunnelEditDialog(tp.Form(), tunnel, false); config != nil { + if config := runTunnelEditDialog(tp.Form(), tunnel); config != nil { go func() { priorState, err := tunnel.State() tunnel.Delete() @@ -437,20 +432,8 @@ func (tp *TunnelsPage) onEditTunnel() { } } -func (tp *TunnelsPage) onCloneTunnel() { - tunnel := tp.listView.CurrentTunnel() - if tunnel == nil { - return - } - - if config := runTunnelEditDialog(tp.Form(), tunnel, true); config != nil { - // Save new - tp.addTunnel(config) - } -} - func (tp *TunnelsPage) onAddTunnel() { - if config := runTunnelEditDialog(tp.Form(), nil, false); config != nil { + if config := runTunnelEditDialog(tp.Form(), nil); config != nil { // Save new tp.addTunnel(config) } -- cgit v1.2.3-59-g8ed1b