From b4faca150df1ad5fbbcc1543bf07cdf59632fb8b Mon Sep 17 00:00:00 2001 From: Emilia Date: Sat, 13 May 2023 17:35:47 -0400 Subject: [PATCH] Change empty well symbol (easier to read) --- src/data/transfer_region.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/transfer_region.rs b/src/data/transfer_region.rs index c286a4d..af58c1a 100644 --- a/src/data/transfer_region.rs +++ b/src/data/transfer_region.rs @@ -241,7 +241,7 @@ impl fmt::Display for TransferRegion<'_> { if dest_wells.contains(&(i,j)) { dest_string.push_str("x") } else { - dest_string.push_str("o") + dest_string.push_str(".") } } dest_string.push_str("\n");