summaryrefslogtreecommitdiffstats
path: root/src/hex
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2020-10-07 18:38:07 +0200
committerCanop <cano.petrole@gmail.com>2020-10-07 18:38:07 +0200
commit4b6a90a86d62902bb2795b5b721635fdaa87faa5 (patch)
treed01a6d18389f42e02aebb8458c8a0ef5e682489f /src/hex
parent53e07a4ebb94ae613b552af1d6e3d0ff7ee5cdff (diff)
change the syntax of `cols_order` in conf
Diffstat (limited to 'src/hex')
-rw-r--r--src/hex/hex_view.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hex/hex_view.rs b/src/hex/hex_view.rs
index b645ff3..75005a8 100644
--- a/src/hex/hex_view.rs
+++ b/src/hex/hex_view.rs
@@ -5,7 +5,7 @@ use {
},
crate::{
command::{ScrollCommand},
- display::{CropWriter, LONG_SPACE, Screen, W},
+ display::{CropWriter, SPACE_FILLING, Screen, W},
errors::ProgramError,
skin::PanelSkin,
},
@@ -203,7 +203,7 @@ impl HexView {
}
}
}
- cw.fill(&styles.default, LONG_SPACE)?;
+ cw.fill(&styles.default, &SPACE_FILLING)?;
if is_thumb(y, scrollbar) {
w.queue(SetForegroundColor(scrollbar_fg))?;
w.queue(Print('▐'))?;