Closed
Description
We are using imgui in a real time application like game. When FPS is very low, blow 1 frame per second, it becomes very difficult to click a button. For some buttons with extended menu triggered by long pressing, it's almost impossible to click. I checked codes. And I found that imgui translates mouse key states to key click events. That is key down to event. When a key is pressed and released in one frame, the last state is the same as begin. So the key is not clicked.
Have you considered using event based approach? We can pass key pressed and released events to imgui. And imgui can use them to generate event flags.
This annoys us. We want to try to fix it. We can create pull request. :)