Skip to content

Commit cb8225f

Browse files
committedNov 9, 2019
Fix color introducer string
1 parent e14aa15 commit cb8225f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎src/image_backends/sixel.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ impl super::ImageBackend for SixelBackend {
119119
let color_multiplier = 100.0 / 255.0;
120120
image_data.extend(
121121
format!(
122-
"#{};2;{};{};{};",
122+
"#{};2;{};{};{}",
123123
colors.len(),
124124
(pixel[0] as f32 * color_multiplier) as u32,
125125
(pixel[1] as f32 * color_multiplier) as u32,

0 commit comments

Comments
 (0)