Closed roife closed 1 year ago
Fix issue #88.
When activating tab-bar, it calls (tab-bar--update-tab-bar-lines t), which will activating tab-bar on all frames, including childframes.
tab-bar
(tab-bar--update-tab-bar-lines t)
By setting tab-bar-lines-keep-state to 1 on childframes, tab-bar--update-tab-bar-lines will ignore theses childframes.
tab-bar-lines-keep-state
1
tab-bar--update-tab-bar-lines
Thank you very much! I merged your PR.
Fix issue #88.
When activating
tab-bar
, it calls(tab-bar--update-tab-bar-lines t)
, which will activatingtab-bar
on all frames, including childframes.By setting
tab-bar-lines-keep-state
to1
on childframes,tab-bar--update-tab-bar-lines
will ignore theses childframes.