aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/confview.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/confview.go')
-rw-r--r--ui/confview.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/ui/confview.go b/ui/confview.go
index 518164ca..515cadde 100644
--- a/ui/confview.go
+++ b/ui/confview.go
@@ -545,7 +545,13 @@ func (cv *ConfView) setTunnel(tunnel *service.Tunnel, config *conf.Config, state
cv.SetSuspended(false)
}
}()
- title := "Interface: " + config.Name
+ title := "Interface: "
+ if cv.name.Title() == title {
+ //TODO: This here is a filthy hack that shouldn't be required!
+ suspend()
+ cv.SendMessage(win.WM_SIZING, 0, 0)
+ }
+ title += config.Name
if cv.name.Title() != title {
cv.name.SetTitle(title)
}