From 23a1380cdad9d58343c77f61944e5252594356f8 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Tue, 12 Nov 2019 14:01:47 +0100 Subject: ui: remove trailing … from file dialog titles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is Microsoft Windows general convention. Signed-off-by: Simon Rozman --- ui/tunnelspage.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/tunnelspage.go') diff --git a/ui/tunnelspage.go b/ui/tunnelspage.go index 5da65770..aed8d157 100644 --- a/ui/tunnelspage.go +++ b/ui/tunnelspage.go @@ -531,7 +531,7 @@ func (tp *TunnelsPage) onSelectAll() { func (tp *TunnelsPage) onImport() { dlg := walk.FileDialog{ Filter: "Configuration Files (*.zip, *.conf)|*.zip;*.conf|All Files (*.*)|*.*", - Title: "Import tunnel(s) from file…", + Title: "Import tunnel(s) from file", } if ok, _ := dlg.ShowOpenMultiple(tp.Form()); !ok { @@ -544,7 +544,7 @@ func (tp *TunnelsPage) onImport() { func (tp *TunnelsPage) onExportTunnels() { dlg := walk.FileDialog{ Filter: "Configuration ZIP Files (*.zip)|*.zip", - Title: "Export tunnels to zip…", + Title: "Export tunnels to zip", } if ok, _ := dlg.ShowSave(tp.Form()); !ok { -- cgit v1.2.3-59-g8ed1b