Skip to content

Commit c623ede

Browse files
committed
font: Fix degree symbols
Circle is on the left... Signed-off-by: Daniel Schaefer <[email protected]>
1 parent d2e2200 commit c623ede

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

inputmodule-control/src/font.rs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
pub fn convert_symbol(symbol: &str) -> Vec<u8> {
55
match symbol {
66
"degC" => vec![
7-
0, 0, 0, 1, 1,
8-
0, 0, 0, 1, 1,
9-
1, 1, 1, 0, 0,
10-
1, 0, 0, 0, 0,
11-
1, 0, 0, 0, 0,
12-
1, 1, 1, 0, 0,
7+
1, 1, 0, 0, 0,
8+
1, 1, 0, 0, 0,
9+
0, 0, 1, 1, 1,
10+
0, 0, 1, 0, 0,
11+
0, 0, 1, 0, 0,
12+
0, 0, 1, 1, 1,
1313
],
1414
"degF" => vec![
15-
0, 0, 0, 1, 1,
16-
0, 0, 0, 1, 1,
17-
1, 1, 1, 0, 0,
18-
1, 0, 0, 0, 0,
19-
1, 1, 1, 0, 0,
20-
1, 0, 0, 0, 0,
15+
1, 1, 0, 0, 0,
16+
1, 1, 0, 0, 0,
17+
0, 0, 1, 1, 1,
18+
0, 0, 1, 0, 0,
19+
0, 0, 1, 1, 1,
20+
0, 0, 1, 0, 0,
2121
],
2222
"snow" => vec![
2323
0, 0, 0, 0, 0,

0 commit comments

Comments
 (0)