diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2020-07-22 13:37:57 +0800 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2020-07-22 13:37:57 +0800 |
commit | 4f912929f213c00f6721995bfc5ee0b8879d80e9 (patch) | |
tree | 89e44a62485d366f6a7b1a9c55356bdb928b9c3f | |
parent | b5d1a21e50f2d64abeb79c9c108839c1fb27bb0e (diff) |
Avoid jump when cycling through byte visualization
-rw-r--r-- | src/interactive/app/bytevis.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interactive/app/bytevis.rs b/src/interactive/app/bytevis.rs index 536b46e..1bfda70 100644 --- a/src/interactive/app/bytevis.rs +++ b/src/interactive/app/bytevis.rs @@ -57,7 +57,7 @@ impl fmt::Display for DisplayByteVisualization { Self::make_bar(f, percentage, BAR_SIZE) } Bar => Self::make_bar(f, percentage, BAR_SIZE), - LongBar => Self::make_bar(f, percentage, 20), + LongBar => Self::make_bar(f, percentage, 19), } } } |