Rafał Buchner

Results 9 issues of Rafał Buchner

I've been testing some stuff with IBM plex Variable in InDesign, and I realised that when I select any italic style and starting to drag the weight axis slider, it...

type: bug 🐛

like in the subject. Trufont download link doesn't work on the [website](https://trufont.github.io). I hit `Mac OS Install` button and I'm getting a blank page with the text "Not found"

https://github.com/robotools/vanilla/issues/142#issuecomment-836598669

Maybe I'm doing something wrong, but it seems like the vertical line is behaving weirdly. It is not vertical at all. Here is my code: ```Python from AppKit import NSObject...

Scrollers are always visible. ![image](https://user-images.githubusercontent.com/18727963/147160295-d2b028b2-312f-4968-984e-58d18359c832.png) ``` from AppKit import NSView, NSColor, NSRectFill from vanilla import Window, ScrollView class DemoView(NSView): def drawRect_(self, rect): NSColor.redColor().set() NSRectFill(self.bounds()) class ScrollViewDemo: def __init__(self): self.w =...

If you collapse the last pane, you are not able to retrieve it. ```Python class DesignSpaceWindow(BaseWindowController): def __init__(self): self.winMinSize = (200,400) winMaxSize = (400,1200) self.w = Window(self.winMinSize,"Master Tools",minSize=self.winMinSize,maxSize=winMaxSize) # build...

The current **GSStdOut** error-handling mechanism in Glyphs Remote Scripting only prints the error message instead of raising an exception. As a result, scripts continue executing even when a critical error...

just found out that this simple stuff like this gives me an error ```python a = Square(10, origin=Point(5, 5)) b = Circle(10, origin=Point(15, 15)) intersections = a.union(b) ``` ```shell Traceback...

I was trying to use pen protocol for some boolean operations. I think that BezierPaths extracted from the BezierPathCreatingPen seems to be faulty. Here is code that will give you...