Mark

Results 31 comments of Mark

I am not color blind. The colors look red and black to me. But anyway that is really beside the point: what matters is that the contrast is so poor...

Yes black background. I agree that what I thought was red is some kind of dark pink. However the `=` and `==` are so blurred that they look like `-`...

No, since the same effect happens on my big-screen desktop and the laptop I'm replying on. On Mon, 28 Dec 2020 at 10:35, Doeke Wartena wrote: > Can it be...

Your assumption is correct. Given a source tree of myapp/ myapp/src/main.rs where does python3.dll go? and where does python's libs dir go? Idealy I'd like: myapp/target/release/python/ # python3.dll + libs/...

I also hope to see more examples. I'd like to see one where rust starts up Python and tells it to read a .pyz file and calls main() in the...

Thanks for adding that new example. I can see now how to add custom data & methods to existing controls. [test7.nim.zip](https://github.com/trustable-code/NiGui/files/3947314/test7.nim.zip) I really want to avoid globals because I want...

I tried using a custom control but just get a segfault. [test8.nim.zip](https://github.com/trustable-code/NiGui/files/3947371/test8.nim.zip) Here's the code: ```nim # test8.nim: SEGV {.experimental: "codeReordering".} import nigui type View = ref object of Control...

I tried using Julia's pkg command to `add Gtk` on two different Xubuntu 18.04.1 machines. On the first it seemed to work without error, on the second it produced errors:...

Yes that exact path exists. I added the extra bit as per your suggestion at the end: ```julia if !isinteractive() c = Condition() signal_connect(win, :destroy) do widget notify(c) end wait(c)...

It works as a script if I add the `if isinteractive()` stuff. It also works in the REPL although each statement produces lots of output (Gtk..Leaf(...)), *without* the `if isinteractive()`...