aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-07-25 08:29:10 -0400
committerDrew DeVault <sir@cmpwn.com>2019-07-25 08:29:10 -0400
commit2f626ddd18e8472e0ddc2bb9013b7d01c1b5b9a9 (patch)
treefb39de5981ea9c4923d12c1bb176e52af5520183
parentfe2fef4b750e570361eabc849c1ec09fe5eda01d (diff)
Fix panic when tabs.popHistory is nonexistent
-rw-r--r--lib/ui/tab.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ui/tab.go b/lib/ui/tab.go
index 7808db4..a9b24a9 100644
--- a/lib/ui/tab.go
+++ b/lib/ui/tab.go
@@ -89,7 +89,7 @@ func (tabs *Tabs) Replace(contentSrc Drawable, contentTarget Drawable, name stri
func (tabs *Tabs) Select(index int) {
if index >= len(tabs.Tabs) {
- panic("Tried to set tab index to a non-existing element")
+ return
}
if tabs.Selected != index {