1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-24 13:52:55 +03:00

gui: invalidate fancy tab bar on config reload

Otherwise we won't pick up font changes as quickly
This commit is contained in:
Wez Furlong 2021-12-30 16:50:44 -07:00
parent 99d73baba7
commit 561efcb8d1

View File

@ -1306,6 +1306,7 @@ impl TermWindow {
self.show_scroll_bar = config.enable_scroll_bar;
self.shape_cache.borrow_mut().clear();
self.fancy_tab_bar.take();
self.invalidate_fancy_tab_bar();
self.input_map = InputMap::new(&config);
self.leader_is_down = None;
let dimensions = self.dimensions;