mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-10 15:14:27 +00:00
fix(backend/curses): avoid platform specific conversion of graphemes
This commit is contained in:
parent
da90ec15fa
commit
3ef19f41e6
1 changed files with 3 additions and 3 deletions
|
@ -161,9 +161,9 @@ fn draw(curses: &mut easycurses::EasyCurses, symbol: &str) {
|
|||
block::THREE_QUATERS => pancurses::ACS_BLOCK(),
|
||||
block::FIVE_EIGHTHS => pancurses::ACS_BLOCK(),
|
||||
block::HALF => pancurses::ACS_BLOCK(),
|
||||
block::THREE_EIGHTHS => ' ' as u32,
|
||||
block::ONE_QUATER => ' ' as u32,
|
||||
block::ONE_EIGHTH => ' ' as u32,
|
||||
block::THREE_EIGHTHS => ' '.into(),
|
||||
block::ONE_QUATER => ' '.into(),
|
||||
block::ONE_EIGHTH => ' '.into(),
|
||||
bar::SEVEN_EIGHTHS => pancurses::ACS_BLOCK(),
|
||||
bar::THREE_QUATERS => pancurses::ACS_BLOCK(),
|
||||
bar::FIVE_EIGHTHS => pancurses::ACS_BLOCK(),
|
||||
|
|
Loading…
Reference in a new issue