Arnaud Loonstra
Arnaud Loonstra
Imagine I want to add a context menu on node content. In the sample.cpp: ```cpp // Custom node content may go here ImGui::Text("Content of %s", node->Title); const char* names[5] =...
This is a fix for #5. It replaces the canvas's offset vector with the scroll tracking of the window.
Changing the Window flags to: ``` if (ImGui::Begin("ImNodes", nullptr, ImGuiWindowFlags_AlwaysVerticalScrollbar | ImGuiWindowFlags_HorizontalScrollbar)) ``` The horizontal scrollbar doesn't appear to scroll.
Not so much of an issue but rather a missing feature. Building libzmq on Windows with Visual Studio's Clang compiler works fine. however the tests give some errors. # Environment...
amongst many other libs: ``` $ ldd openvr/bin/linux64/libopenvr_api.so linux-vdso.so.1 (0x00007ffebd9ea000) libSDL2-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0 (0x00007faaa928b000) librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007faaa9280000) libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007faaa9263000) libgomp.so.1 => /usr/lib/x86_64-linux-gnu/libgomp.so.1 (0x00007faaa921f000) libGL.so.1 => /usr/lib/x86_64-linux-gnu/libGL.so.1 (0x00007faaa9198000)...
It seems it updates the file in place leaving the old content in the tail. zfile_output calls `fopen (self->fullname, "r+b");` which according to[ docs](https://pubs.opengroup.org/onlinepubs/9699919799/functions/fopen.html): r+ or rb+ or r+b: Open...
If you are using `zlist_autofree` (usually for storing strings) is there any situation imaginable where you don't want to use `strcmp` as a comparator function? As `zlist_autofree` duplicates strings you...
I'm not sure if czmq supports the stream socket fully. I'm trying to add a test for it in zsock.c: ```c #ifdef ZMQ_STREAM zsock_t *streamrecv = zsock_new_stream("@tcp://127.0.0.1:1234"); assert (streamrecv); zsock_t...
It might be caused by zmq.h, if you include winsock2.h before zmq.h it is fixed. I think this belongs in a separate issue. I'll fix it by including winsock2 in...
This is not so much as fixing a problem but rather adding functionality. As a convenience this PR adds the `zoscdump` utility which can receive OSC messages from TCP or...