Tal Leming

Results 88 issues of Tal Leming

This method would remove the loaded glyph data but not go so far as to delete the glyph from the glyph set. This would be useful for reducing memory consumption....

There may not be a good reason to make these private.

When a contour/component/point/guide/anchor is inserted, the identifier in the incoming object could conflict with an existing identifier. What should happen here: raise an error or silently remove the incoming identifier?...

question

The contour splitting code doesn't work with quads. Remove it (after moving it down to the Prepolator subclass.)

enhancement

I broke the save functionality into small chunks to make it easier to subclass. For example: ``` def saveKerning(self, writer, saveAs=False, progressBar=None): """ Save kerning. This method should not be...

enhancement

This should have the same alignment options as TextBox. In the meantime, here's a workaround for @LettError: ```python import AppKit import vanilla class RightAlignEditTextList2Cell(vanilla.EditTextList2Cell): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs)...

This looks stupid: [Setting setBordered on the NSColorWell makes it uneditable.](https://developer.apple.com/documentation/appkit/nscolorwell/1528015-bordered?language=objc) So, this thing will have to be built from scratch. @typemytype you don't happen to have anything that can...

Closing windows is slow. Example: ```python import time import vanilla class Test: def __init__(self): count = 24 self.w = vanilla.Window( (200, 10 + (30 * count)), "Test" ) y =...

[Make it Markdown while we're at it.](https://pandoc.org/try/?text=&from=rst&to=gfm&standalone=0)