From 63d89aa0464b42dedb0fafbdc35da54502b306bc Mon Sep 17 00:00:00 2001 From: Jonathan Simpson Date: Sun, 13 Feb 2022 14:40:48 -0500 Subject: [PATCH] Fix crash on startup when there are no saved tabs to load. --- src/main.rkt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.rkt b/src/main.rkt index b1e3aea..ceee663 100644 --- a/src/main.rkt +++ b/src/main.rkt @@ -254,8 +254,9 @@ ;; load any saved tabs, else initialize one new tab (unless (load-tabs tab-panel) - (send tab-panel append "New") + (send tab-panel append "Introduction") (init-new-tab tab-panel 0) + (send tab-panel set-selection 0) (goto-help-page tab-panel)) ;(send tab-panel set-selection 0)