Nojus Gudinavičius

Results 51 comments of Nojus Gudinavičius

Are we planning to implement the actual routing in this PR too? Could we merge this PR now and add routing in separate PR, leaving this one just for icons?

Removed all the helicopters from routing logic.

Great, thanks! Should I open a new PR for Helicopter routing? (With the reverted enum changes)

`Hack Regular Nerd Font Complete.ttf` I downloaded from this repo. It is indeed strange that `Hack Nerd Font` has multiple styles - right now I see the same regular/bold/italic options,...

Could it be DPI related? Mine is at 96.

Yes the original `Hack-Regular.ttf` files are identical. I tried with the one you linked, and issue is exactly the same. Attaching output of [font-manager's](https://github.com/FontManager/font-manager) font-viewer: `Hack-Regular.ttf`: ![hack-2](https://user-images.githubusercontent.com/46261165/148575813-d51f6683-8456-4fb2-8c05-f99349825768.png) `Hack Regular Nerd...

It's strange that you don't see this issue. Also, the patched fonts from this repo built in recent days do not work for me at all, probably something's wrong with...

Yes, hinting it is! I am using BGR anti-aliasing for my monitor, but switching to grayscale had the same issue. However, when switching from *full* hinting to *slight* in my...

Maybe something like this? ```python from fontTools import ttLib originalTTF = ttLib.TTFont("Hack-Regular.ttf") patchedTTF = ttLib.TTFont("Hack Regular Nerd Font Complete.ttf") patchedTTF['head'].flags = originalTTF['head'].flags patchedTTF.save("Hack Regular Nerd Font Complete Fixed.ttf") ```