Arnaud Loonstra
Arnaud Loonstra
I have a working concept which correctly handles the scrollbars: ```cpp void ShowDemoWindow(bool*) { // holds the recangle of the canvas static ImRect canvas_rect = ImRect(0,0,0,0); // Window for the...
No worries! Indeed doing `w->DC.CursorMaxPos = w->ContentsRegionRect.Min + canvas_rect.GetSize();` instead if `ItemSize()` seems to work as well. I'll try SetCursorPos as well, although it kind of feels counter intuitive? Still...
Yes, I understand its working now. I corrected the canvas coordinates by a simple ``` ImGui::SetCursorScreenPos(w->InnerClipRect.Min - w->Scroll + ImVec2(0,0) - canvas_rect.Min);` ``` before adding widgets. I've switched from using...
Same happening here: ``` var slideshow = remark.create({ sourceUrl: 'les1.md' }); ``` Error is: ``` Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at file:///tmp/pres/les1.md. (Reason:...
Seems this is blocking nowadays: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS/Errors/CORSRequestNotHttp Since firefox 68. Setting privacy.file_unique_origin to false works around this. On chromium it blocks as well, btw.
On Debian Bullseye using the Mosaic-Installer script: ``` Compiling Mosaic for Release make[1]: Entering directory '/opt/openFrameworks/apps/d3cod3/Mosaic' /opt/openFrameworks/libs/openFrameworksCompiled/project/makefileCommon/config.addons.mk:210: *** missing separator. Stop. make[1]: Leaving directory '/opt/openFrameworks/apps/d3cod3/Mosaic' make: *** [/opt/openFrameworks/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk:129: Release] Error...
For me it was quite a search. Followed the instructions to no avail. I finally found a way to build on Debian (testing) against the debian provided obs-studio. I also...
Ow that's related to #29 and gave me hints to at least get it running.
This is a draft PR as I'm not sure this is wanted here. So comments welcomed.
I've only skimmed your issue quickly but at least I'm using czmq as a subdirectory in cmake. See here: https://github.com/hku-ect/gazebosc/blob/16c19a26cb987a0a75808dd42b7f10f287a84664/CMakeLists.txt#L66 We should be able to this better so if I...