PatienceAllergy

Results 5 comments of PatienceAllergy

I'm still not sure why, but this fixed it for me: ``` glyph.left_side_bearing = int(glyph.left_side_bearing + delta / 2) glyph.right_side_bearing = int(glyph.right_side_bearing + delta - glyph.left_side_bearing) ```

> Would you be OK with preparing a pull request, with the rounding added? I'll give it a go. I've never done one before. So, as long as you're not...

> Would you be OK with preparing a pull request, with the rounding added? Done! Well now I know how to do that. I also explicitly did a test font...

> Using `math.round()` returns an error that reads `AttributeError: module 'math' has no attribute 'round'`; Changing it to `round()` (without `math.`) solves it. You're right! I tested it, and it...

> > Now let's see how I can update this thing... > > Just push an update to your fork and this PR will be updated as well. ;) It...