Clem Cords

Results 57 comments of Clem Cords
trafficstars

Your code does not compile for me, after correcting the missing template argument in `std::vector` and the lambda capture clause of `print_numbers`, it runs for me as expected ```cpp jluna::initialize(8);...

I this a M1/M2 mac or a 32-bit architecture? Also could you try compiling with g++ instead of clang to see if that works maybe? I don't have a mac...

I did the last part for you, please clone this branch and rebuild: ``` https://github.com/Clemapfel/jluna cd jluna git fetch git branch checkout string_literal_issue mkdir build; cd build cmake .. make...

I can reproduce this, it's a bug in the C++ component. It may take some time to update, as any changes need to be merged with the binary builder build...

Fixed by https://github.com/Clemapfel/mousetrap/commit/d12ae02c4ec389ff7374c1f6772aa338b19c15b4, it will take some time to go live since it needs to be reviewed by the binary builder people and uploaded to the registry. If you're curious,...

Duplicate of: https://github.com/Clemapfel/Mousetrap.jl/issues/54 `RenderArea` is currently not available on certain MacOS architectures. While it should be fixable, I have no way to do so as I would need a physical...

It's usually a diver issue, but it may also be a hardware issue, though I have never encountered this on Windows before. What version of ubuntu are you using, also...

I agree, the main issue is that Documenter.jl doctest macro does not work with Mousetrap, as it needs to create a new window and application instance anytime any of the...

Fixed by multiple commits such as https://github.com/Clemapfel/Mousetrap.jl/commit/b72910a73078873423d68faeea98ac52041a7aa4, all runnable code in the docs is now run once when the docs are built, avoiding future typos. This fix will go live...

I can reproduce the warnings, MWE: ```julia using Mousetrap main() do app::Application window = Window(app) dropdown = DropDown() push_back!(dropdown, "Test") push_back!(dropdown, "Test") set_child!(window, dropdown) present!(window) end ``` I will investigate...