commit b7286684d73624890ce1d663c499eb8acc9c845b from: Omar Polo date: Thu Jan 13 18:37:10 2022 UTC fix glitch with tab-bar-show=1 and tab-undo-close a missing ui_schedule_redraw on unkill_tab means that the tabbar is not rendered when calling tab-undo-close when there is only one tab. commit - eeddf8e6cfd70500dd779c1cde0ad1dd2b8dde61 commit + b7286684d73624890ce1d663c499eb8acc9c845b blob - b59e584b3f0378b4453a75bfbadb04f4904b2d57 blob + b976103b7d9155135e9b6299d409c4a177dff2cb --- session.c +++ session.c @@ -132,6 +132,7 @@ unkill_tab(void) if (TAILQ_EMPTY(&ktabshead)) return NULL; + ui_schedule_redraw(); autosave_hook(); t = TAILQ_FIRST(&ktabshead);