Tal Leming

Results 186 comments of Tal Leming

Good point. I should make a generic page about immutability and point to that on groups, glyph order and anywhere else this applies.

> looks strange to me. Me too and I wrote it. 😄 I really wanted to remove/deprecate/change this and other things like it, but I tried to balance my quest...

> But changing the API will not need much work to adapt the script. No, it's not a huge change. Rather, it was that I was worried about generating a...

I was reading the latest release notes and noticed that [sheets look like modal windows in macOS 11](https://developer.apple.com/design/human-interface-guidelines/macos/overview/whats-new-in-macos/#sheets).

I added the version that I created for ezui that was, in turn, based on the one in RoboFont. ```python import vanilla class Test: def __init__(self): self.w = vanilla.ModalWindow((200, 200))...

@typemytype @justvanrossum Could one of you double check that I'm not making a mistake here. I'm 99% sure it is okay, but since this will affect every vanilla window ever,...

This is a limitation of NSSplitView as far as I can tell.

I used @typemytype's suggestion: ```python import vanilla w = vanilla.Window((200, 200)) w.te = vanilla.TextEditor((0, 0, 0, 0), "Testing.") w.te.enable(False) w.open() ```

The `EditText` documentation now says that the value should be a string if no formatter is defined. Do you still think we should raise a warning if the value is...

Any GPOS support beyond single and pair positioning is almost certainly broken. It's weird that the two versions give different results. I don't recall changing anything in the core. Are...