From 8251937be9db0100778bf83a673cdb64027c2b29 Mon Sep 17 00:00:00 2001 From: Joakim Hulthe Date: Wed, 18 Jun 2025 22:55:09 +0200 Subject: [PATCH] Open tabs when opened --- src/app.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app.rs b/src/app.rs index 12d31a9..1d05b3d 100644 --- a/src/app.rs +++ b/src/app.rs @@ -382,6 +382,7 @@ impl App { let id = self.next_tab_id; self.next_tab_id += 1; self.tabs.insert(i, (id, tab)); + self.open_tab_index = Some(i); } fn save_active_tab(&mut self, ctx: &Context) {