omar

Results 2356 comments of omar

It's really hard to guess what is happening without repro code. And your explanation are missing details. e.g. "when I send virtual function keys" vs "properly using the normal hardware...

Hello, There is already a x11 native backend PR here https://github.com/ocornut/imgui/pull/3372 It would be good to compare both and decide where we'd like to go.

It would be good to find a solution that doesn’t requires making a modification to the backend otherwise you aren’t going to easily update your copy. this may need to...

@rokups Your example is omitting the right-alignment. Here's the same example with it: ```cpp static ImGuiWindowFlags window_flags = ImGuiWindowFlags_AlwaysAutoResize; ImGui::Begin("Window", NULL, window_flags); ImGui::CheckboxFlags("ImGuiWindowFlags_AlwaysAutoResize", &window_flags, ImGuiWindowFlags_AlwaysAutoResize); if (ImGui::BeginTable("table1", 2, ImGuiTableFlags_SizingFixedFit |...

You can already use `ImGuiDockNodeFlags_PassthruCentralNode` and manipulate `WindowBg` color freely. This is showcased in the demo. **Otherwise please ask precisely about your problem rather than ask about a possible solution.**...

I have a GLFW backend with a few OS specific tweaks (currently implemented for Win32 only). I think we’ll aim to support OS X at minimum in the GLFW example,...

I have pushed an early branch here: https://github.com/ocornut/imgui/tree/viewport I consider this experimental at this point, at this is a feature planned for 1.70 (probably along with docking/tabs) but if you...

The target is that whatever happens with normal apps should happen the same way with our system. Right now it's probably pretty broken, I haven't looked at DPI stuff much...

Thanks @JSandusky, will look into both those things (adding them to my list). For the drag and drop tool-tip, we may end up enabling by default the behavior that tool-tips...

> I tried. I find sometime the menu would render at the main window right top position. Can you clarify? I don't understand. > The IME position is not correctly...