Pär Bohrarper

Results 7 comments of 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: ![image](https://github.com/ocornut/imgui/assets/3907907/e350a02a-08c2-44df-99f3-86d6e39a7016) 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.

![image](https://user-images.githubusercontent.com/3907907/77700987-994dd500-6fb5-11ea-95d2-ac4b8e6c9ba2.png) ![spim-tour](https://user-images.githubusercontent.com/3907907/77701006-a2d73d00-6fb5-11ea-84eb-01771b561f74.gif) 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...