Frank David Martínez M
Frank David Martínez M
Hi Friends, `BeginViewportSideBar` is pretty useful. Are there any plans to promote it to the public API?
@ocornut Thank you, I will love to see the new API. Thank you for all your hard work. The more I use ImGui the more I love it.
@alexandru-cazacu Thank you for the example. Some notes: ```cpp // [1] BeginViewportSideBar signature receives ImGuiViewport* viewport // // You can change this: // ImGuiViewportP* viewport = (ImGuiViewportP*)(void*)ImGui::GetMainViewport(); // To this:...
I had a dream: That this branch was merged into master and then master was merged into docking 🤩. It was a happy dream.
Hi @thedmd , this layout looks amazing. I wonder if is it possible to move it to an independent file pair `imgui_layout(.cpp/.hpp)` so it can be used with vanilla ImGui....
> > I can do that. Hi @thedmd have you had time to work on this? It would be great to have this feature available as an extension.
Ok, thank you for the detailed answer. I will take a look at nanovg, apparently it is very popular, i suppose people don't care that it is unmaintained because there...
In Linux mint 19.3: `Python 3.6.9` => Segmentation Fault `Python 3.7.7` => Works
Hi, I am trying to use **PFD_SKIP_IMPLEMENTATION** to create a separate compilation unit, but I get some link errors: portable-file-dialogs/pfd.hpp ```cpp #pragma once #define PFD_SKIP_IMPLEMENTATION #include "portable-file-dialogs.h" ``` portable-file-dialogs/pfd.cpp ```cpp...
Thank you for the detailed info. I like the second option, keeping portable-file-dialogs.h internal and using pfd.h everywhere with the corresponding pfd.cpp linked. Do you plan to introduce the PFD_INTERNAL...