FontAwesome: Allow two identical circles

[why]
F1DB had an open circle, called circle-thin.
That must now come from the regular set.
Unfortunaly circle_o at F10C already is also the same regular set icon.
And we try to prefer the solid set if a regular set has been used
already.

[how]
Add one specific exception to the rule :-(

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

View file

@ -168,7 +168,8 @@ for point in all_points:
altuni = source[point].altuni
if altuni:
for i, _, _ in altuni:
block_regular.add(i)
if i != 0xf1db: # Allow circle to be used twice
block_regular.add(i)
elif point in sources.solid:
source = sources.solid
subset = 'solid'