Tal Leming

Results 186 comments of Tal Leming

I committed and pushed the window appearance changes.

Hm. We could define some constants that use this. Something like: ``` python osVersionCurrent = StrictVersion(platform.mac_ver()[0]) osVersion10_10 = StrictVersion("10.10") osVersion10_9 = StrictVersion("10.9") osVersion10_8 = StrictVersion("10.8") osVersion10_7 = StrictVersion("10.7") osVersion10_6 =...

Thanks. I'm hoping to get back to updating vanilla next week. I had to do some of my day job work and the problem with List made me not want...

I'd love to, but I don't have time right now. My open source time is going to other projects. Patches are welcome!

A couple of things on ask: 1. Should the displayed buttons follow the order of the items in the button title list? If my button titles are: ```python buttonTitles=[ dict(title="A",...

Can we close this?

Added to List2: ```python import vanilla class Test: def __init__(self): self.w = vanilla.Window((200, 200)) self.w.l = vanilla.List2( (0, 0, 0, 0), list("abc"), deleteCallback=self.deleteCallback ) self.w.open() def deleteCallback(self, sender): print("deleteCallback") Test()...

Shortcut for: ```python obj.setFocusRingType_(NSFocusRingTypeNone) ``` Maybe it should be `setDrawFocusRing` since `vanilla.List` has a `drawFocusRing` argument.

I added `setShowFocusRing` to vanillaBase. ```python import AppKit import vanilla w = vanilla.Window((400, 300)) w.l = vanilla.List((10, 10, -10, 50), "List") w.l2 = vanilla.List((10, 70, -10, 50), "List2") w.et =...

> a proposal for the auto layout From an API perspective, this looks cool. The internal code looks nice and simple, too. The only less-than-vanilla-like-thing is the constraint syntax: `V:|-padding-[info(>=controlHeight)]-padding-[info1(>=controlHeight)]-80-|`...