summaryrefslogtreecommitdiffstats
path: root/src/components/tui_widget/time_chart/canvas.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/tui_widget/time_chart/canvas.rs')
-rw-r--r--src/components/tui_widget/time_chart/canvas.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/tui_widget/time_chart/canvas.rs b/src/components/tui_widget/time_chart/canvas.rs
index f1d98825..b6cc41c1 100644
--- a/src/components/tui_widget/time_chart/canvas.rs
+++ b/src/components/tui_widget/time_chart/canvas.rs
@@ -363,9 +363,10 @@ impl<'a> Context<'a> {
) -> Context<'a> {
let grid: Box<dyn Grid> = match marker {
symbols::Marker::Dot => Box::new(CharGrid::new(width, height, '•')),
- symbols::Marker::Block => Box::new(CharGrid::new(width, height, '▄')),
- symbols::Marker::Braille => Box::new(BrailleGrid::new(width, height)),
+ symbols::Marker::Block => Box::new(CharGrid::new(width, height, '█')),
symbols::Marker::Bar => Box::new(CharGrid::new(width, height, '▄')),
+ symbols::Marker::Braille => Box::new(BrailleGrid::new(width, height)),
+ symbols::Marker::HalfBlock => Box::new(CharGrid::new(width, height, '▀')),
};
Context {
x_bounds,