FontAwesome: Fix device icons

[why]
Previously we had icons with an open screen and a button, now it is
filled.

[how]
Swap the icons with the open icons at completely different codepoints.

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
This commit is contained in:
Fini Jastrow 2024-04-08 16:31:09 +02:00
parent 07ba7a1421
commit 2e854ba90f

View file

@ -135,8 +135,9 @@ prefer_solid = {
0xF2B6, 0xF2B9, 0xF2BB, 0xF2BD, 0xF2C2,
}
move_or_drop = { 0xF30B: False, 0xF30C: False, 0xF374: True, 0xF219: 0xF3A5 }
swap_codes = [ (0xF167, 0xF16A), (0xF219, 0xF3A5), ]
# Special handling of some few icons, see PR #1596
move_or_drop = { 0xF30B: False, 0xF30C: False, 0xF374: True, 0xF219: 0xF3A5, 0xF10A: 0xF3FA, 0xF10B: 0xF3CD, }
swap_codes = [ (0xF167, 0xF16A), (0xF219, 0xF3A5), (0xF10A, 0xF3FA), (0xF10B, 0xF3CD), ]
block_regular = set()