Small fixes

This commit is contained in:
daa84
2017-08-28 18:05:58 +03:00
parent e8161919a7
commit 6e0909ea95
2 changed files with 10 additions and 8 deletions

View File

@@ -1,4 +1,3 @@
use std;
use std::ops::{Index, IndexMut};
use super::cell::Cell;
@@ -176,7 +175,7 @@ impl StyledLine {
let mut byte_offset = 0;
for (cell_idx, cell) in line.line.iter().enumerate() {
if cell.attrs.double_width || cell.ch.is_whitespace() {
if cell.attrs.double_width {
continue;
}
@@ -187,12 +186,14 @@ impl StyledLine {
cell_to_byte.push(cell_idx);
}
insert_attrs(
cell,
&attr_list,
byte_offset as u32,
(byte_offset + len) as u32,
);
if !cell.ch.is_whitespace() {
insert_attrs(
cell,
&attr_list,
byte_offset as u32,
(byte_offset + len) as u32,
);
}
byte_offset += len;
}