1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-27 02:25:28 +03:00

fix: multi-glyph tab titles

closes: https://github.com/wez/wezterm/issues/711
This commit is contained in:
Wez Furlong 2021-04-23 22:51:53 -07:00
parent 52b57ca512
commit 87d49e45fc
2 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@ As features stabilize some brief notes about them will accumulate here.
* New: [swallow_mouse_click_on_pane_focus](config/lua/config/swallow_mouse_click_on_pane_focus.md) option [#724](https://github.com/wez/wezterm/issues/724)
* New: [pane_focus_follows_mouse](config/lua/config/pane_focus_follows_mouse.md) option [#600](https://github.com/wez/wezterm/issues/600)
* Fixed: splitting a pane while a pane is in the zoomed state would swallow the new pane [#723](https://github.com/wez/wezterm/issues/723)
* Fixed: multi-cell glyphs weren't displayed in tab titles [#711](https://github.com/wez/wezterm/issues/711)
### 20210405-110924-a5bb5be8

View File

@ -204,7 +204,7 @@ impl TabBarState {
}
line.set_cell(x, Cell::new_grapheme(sub, cell_attrs.clone()));
x += 1;
x += unicode_column_width(sub);
}
for c in right {