Revert ellipsis changes

This commit is contained in:
George Pollard 2019-08-25 20:00:04 +12:00
parent 877bbcd931
commit cce5b5bb5e
No known key found for this signature in database
GPG Key ID: 6694D898AEB73984

View File

@ -97,9 +97,9 @@ impl TableView {
entries[row].truncate(max_num_of_columns);
}
headers.push("".to_string());
headers.push("...".to_string());
for row in 0..entries.len() {
entries[row].push(("".to_string(), "c")); // ellipsis is centred
entries[row].push(("...".to_string(), "c")); // ellipsis is centred
}
}