Fix thread argument error #1
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "brk/mandelbrot-visualiser:master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
After starting the visor with a thread argument, I get:
Seems like GTK is trying to parse this argument as a file, and tries to open it.
This is a hacky way to fix an issue, yes, but if you don't plan to add GTK related arguments, or arguments that aren't passed before
g_application_run(...), I think tricking this function that only ./visoris called is probably fine.Thanks for the fix, accepted with minor stylistic change (apparently the GTK docs recommend to pass
NULL, if you want the command line arguments to be ignored).