Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -155,7 +155,7 @@ pub unsafe fn render( fill_in( i.as_mut(), ( - (j as f32 * fw).floor() as u32 // _ + (j as f32 * fw).ceil() as u32 // _ + offset_x, (k as f32 * (fh + line_spacing * fac)).ceil() as u32 @@ -245,7 +245,6 @@ pub unsafe fn render( characters[x.data as usize] = (x.id, x.x); }) }); - }); }; } @@ -502,7 +501,7 @@ fn x() { style: Style { bg: [31, 36, 48], color: [255, 255, 255], - flags: Style::UNDERLINE, + flags: 0, }, letter: Some('['), }, @@ -510,7 +509,7 @@ fn x() { style: Style { bg: [31, 36, 48], color: [255, 173, 102], - flags: Style::UNDERLINE, + flags: 0, }, letter: Some('='), }, @@ -518,7 +517,7 @@ fn x() { style: Style { bg: [31, 36, 48], color: [204, 202, 194], - flags: Style::UNDERLINE, + flags: 0, }, letter: Some('s'), }, @@ -526,7 +525,7 @@ fn x() { style: Style { bg: [31, 36, 48], color: [255, 173, 102], - flags: Style::UNDERLINE, + flags: 0, }, letter: Some('>'), }, @@ -534,7 +533,7 @@ fn x() { style: Style { bg: [31, 36, 48], color: [255, 255, 255], - flags: 5, + flags: 0, }, letter: Some(']'), }, |