Author: Kevin Schoon [kevinschoon@gmail.com]
Hash: 2f33551fa8d1a57ced40939400eeda2f2764fc49
Timestamp: Wed, 16 Sep 2020 19:58:05 +0000 (4 years ago)

+1 -1 +/-1 browse
add extra space per cell
1diff --git a/lib/note.ml b/lib/note.ml
2index 3605486..9ee17e3 100644
3--- a/lib/note.ml
4+++ b/lib/note.ml
5 @@ -237,7 +237,7 @@ module Display = struct
6 let current_max =
7 match List.nth accm i with Some len -> len | None -> 0
8 in
9- if col_length > current_max then col_length + 1 else current_max)
10+ if col_length > current_max then col_length + 2 else current_max)
11 row)
12 cells
13