Skip to content

Commit a493b68

Browse files
tab close button working no longer sending messages from drawloop back to drawloop.
1 parent 5b4a5c5 commit a493b68

27 files changed

+2802
-1359
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ license = "MIT"
9292
name = "boxmux"
9393
readme = "README.md"
9494
repository = "https://github.com/jowharshamshiri/boxmux"
95-
version = "0.201.6060"
95+
version = "0.202.6550"
9696

9797
[package.metadata.deb]
9898
assets = [["target/release/boxmux", "usr/bin/", "755"], ["README.md", "usr/share/doc/boxmux/README", "644"], ["examples/*", "usr/share/doc/boxmux/examples/", "644"]]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
89694

src/chart.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ struct ChartLayout {
2323
/// Total available width
2424
pub total_width: usize,
2525
/// Total available height
26-
pub total_height: usize,
26+
pub _total_height: usize,
2727
/// Width for chart content (excluding labels)
2828
pub chart_width: usize,
2929
/// Height for chart content (excluding title/axes)
@@ -97,7 +97,7 @@ fn calculate_chart_layout(
9797

9898
ChartLayout {
9999
total_width,
100-
total_height,
100+
_total_height: total_height,
101101
chart_width: total_width.saturating_sub(y_label_width + 4), // +4 for separator and padding
102102
chart_height: total_height.saturating_sub(title_height),
103103
y_label_width,
@@ -112,7 +112,7 @@ fn calculate_chart_layout(
112112

113113
ChartLayout {
114114
total_width,
115-
total_height,
115+
_total_height: total_height,
116116
chart_width: total_width.saturating_sub(y_label_width + 2),
117117
chart_height: total_height.saturating_sub(title_height + x_label_height + 1),
118118
y_label_width,
@@ -126,7 +126,7 @@ fn calculate_chart_layout(
126126

127127
ChartLayout {
128128
total_width,
129-
total_height,
129+
_total_height: total_height,
130130
chart_width: total_width,
131131
chart_height: total_height.saturating_sub(title_height + x_label_height),
132132
y_label_width: 0,

src/draw_loop.rs

Lines changed: 671 additions & 293 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)