Pär Bohrarper
Pär Bohrarper
Yeah, that's the same problem. For my use-case I can solve it like that. But in general it'd be nice to be able to build third party libraries without modifying...
When opening a window in a dockspace by calling `ImGui::SetNextWindowDockId` before `ImGui::Begin`, then `ImGui::IsWindowAppearing` doesn't return true. Also, I had expected that switching between tabs in a dockspace would `ImGui::IsWindowAppearing`...
I have a somewhat related question. How can I make a popup (using any of the methods in https://github.com/ocornut/imgui/issues/718#issuecomment-1249822993) be positioned where the text cursor currently is? Especially for `InputTextMultiLine`....
I managed to hack something together: ``` static auto ime_fn = io.SetPlatformImeDataFn; static auto *app = spim_app.get(); io.SetPlatformImeDataFn = [](ImGuiViewport *viewport, ImGuiPlatformImeData *data) { app->setInputPos(data->InputPos[0], data->InputPos[1]); return ime_fn(viewport, data); };...
Is there anyway to intercept the up/down arrow when using `InputTextMultiLine`? I'm trying to implement an auto-complete popup:  It seem like the only key I can use to do...
I need this fixed to be able to turn on clippy checks in rust-analyzer diagnostics.
  I work at Spotify, and on my hackdays I've been making a Spotify client using Dear Imgui. I'm using the docking branch, and the new table API. It...