Check out ImGuiWindowFlags for various such options, ImGuiWindowFlags_NoCollapse should do it for the arrow, ImGuiWindowFlags_NoTitleBar for the entire title.
Not sure what you could have done to cause mouse issues. Are buttons in general working?
Did you use one of the example implementations or write your own? `ImGui::GetIO().MouseDown` and `ImGui::GetIO().MousePos` I believe are the relevant things that need setting on input.
Check out ImGuiWindowFlags for various such options, ImGuiWindowFlags_NoCollapse should do it for the arrow, ImGuiWindowFlags_NoTitleBar for the entire title.
Not sure what you could have done to cause mouse issues. Are buttons in general working?
Did you use one of the example implementations or write your own? `ImGui::GetIO().MouseDown` and `ImGui::GetIO().MousePos` I believe are the relevant things that need setting on input.
Thanks. But what is imgui window flags. Is it a code? Does it remove the top title area? Please explain more.