aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ui/tab.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ui/tab.go')
-rw-r--r--lib/ui/tab.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/ui/tab.go b/lib/ui/tab.go
index b62764fb..6a5cbf50 100644
--- a/lib/ui/tab.go
+++ b/lib/ui/tab.go
@@ -157,6 +157,9 @@ func (tabs *Tabs) selectPriv(index int) bool {
if vis, ok := prev.Content.(Visible); ok {
vis.Show(false)
}
+ if vis, ok := prev.Content.(Interactive); ok {
+ vis.Focus(false)
+ }
tabs.pushHistory(tabs.curIndex)
}
tabs.curIndex = index
@@ -164,6 +167,9 @@ func (tabs *Tabs) selectPriv(index int) bool {
if vis, ok := next.Content.(Visible); ok {
vis.Show(true)
}
+ if vis, ok := next.Content.(Interactive); ok {
+ vis.Focus(true)
+ }
Invalidate()
}
return true