Fix NutHole which broke after switching over to saved_context
This commit is contained in:
parent
679234afd3
commit
3a0e34eed8
|
@ -120,6 +120,9 @@ class NutHole:
|
||||||
self.ctx = boxes.ctx
|
self.ctx = boxes.ctx
|
||||||
self.settings = settings
|
self.settings = settings
|
||||||
|
|
||||||
|
def __getattr__(self, name):
|
||||||
|
return getattr(self.boxes, name)
|
||||||
|
|
||||||
@restore
|
@restore
|
||||||
@holeCol
|
@holeCol
|
||||||
def __call__(self, size, x=0, y=0, angle=0):
|
def __call__(self, size, x=0, y=0, angle=0):
|
||||||
|
|
Loading…
Reference in New Issue