diff --git a/src/main.rs b/src/main.rs index 0345141..4fc0322 100644 --- a/src/main.rs +++ b/src/main.rs @@ -554,12 +554,13 @@ impl Application for App { .closable() .activate() .id(); - let terminal = Terminal::new( + let mut terminal = Terminal::new( entity, term_event_tx.clone(), self.term_config.clone(), colors.clone(), ); + terminal.set_config(&self.config, &self.themes); self.tab_model .data_set::>(entity, Mutex::new(terminal)); }