Aditya Siram

Results 138 comments of Aditya Siram

That is an unfortunate doc bug. I know I had something, must have inadvertently deleted it in a commit. Sorry about that. I'll write something up and upload. Thanks for...

For now with `fltkhs-{fluid}-hello-world`, you can do `stack repl --flag fltkhs:bundled` and run `:main` at the prompt to run the app. Unfortunately I'm having an issue with the REPL where...

Unfortunately I can't seem to reproduce. If you installed FLTK using `apt-get` there's a chance it didn't build the libraries the right way, which is why the docs suggest going...

If you do `make uninstall` in the `fltk` source folder it will remove the libraries and executables it installed. I don't have access to Debian so I'll have to do...

I've never actually used FLTKHS with `runhaskell`. Regarding `intero`, can you try a `stack build --flag fltkhs:bundled` in your app before starting it?

To my knowledge it is [statically linking](https://github.com/deech/fltkhs-hello-world/blob/master/fltkhs-hello-world.cabal#L37). If `stack build --flag fltkhs:bundled` is no longer working for you then it's a regression bug and I'd like to fix it. Please...

Not sure about Nix but I was able to get the REPL working with I added the [object-code flag](https://github.com/deech/fltkhs-hello-world/blob/master/.ghci#L1). Also FYI the Ubuntu version of FLTK just doesn't work right....

Direct calls to `draw` are not recommended, `redraw` is recommended because it correctly queues the widget in the event loop. Also thanks for pointing out this doc bug, That said...

Off the bat I see that `getMenu` is retrieving all the items in the menu and iterating through them to find the one you just added, so essentially it's the...

Yes that might work well. I'll try to get to it as soon as I can but you are able to I'm happy to merge a PR.