mirror of
https://github.com/ryanoasis/nerd-fonts.git
synced 2024-11-19 16:39:20 +02:00
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:
parent
c2be39d2a9
commit
07ba7a1421
@ -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'
|
||||
|
Loading…
Reference in New Issue
Block a user