Avahe Kellenberger

Results 75 comments of Avahe Kellenberger
trafficstars

Look into using `XSetWindowBackground` for this: https://tronche.com/gui/x/xlib/window/XSetWindowBackground.html

Has any progress been made on this front now that IC has been in the works for a while? Curious about the progress, would love to have cyclic imports supported.

You could just do something like ```nim type Foo[T] = object x: T proc newFoo(x: int): Foo[int] = Foo[int](x: x) var x = newFoo(99) ```

I had this issue occur shortly after this issue was posted, so thanks for reporting it and for the feedback on how to remedy the crashing issue. As far as...

I've found that this works if you change `proc = nil` to `proc() = nil`.