fix hour column with big cell

This commit is contained in:
Mylloon 2022-08-23 16:54:49 +02:00
parent aa287b87c2
commit 8b1d7c5b57
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -58,8 +58,13 @@ pub fn line_table(
.to_string() .to_string()
.repeat(cell_length_hours); .repeat(cell_length_hours);
// Print the line // Hours column
print!("\n{}{}{}", ls, line_h, ms); match skip_with.get(&0) {
Some(_) => print!("\n{}{}{}", ls, line_h, rs_bbc),
None => print!("\n{}{}{}", ls, line_h, ms),
};
// Courses columns
for i in 0..number_cell - 2 { for i in 0..number_cell - 2 {
// Check if it's a big cell // Check if it's a big cell
match skip_with.get(&i) { match skip_with.get(&i) {