You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem occurs when dragging an imgui window from completely inside the application window to outside of the application window. The new imgui window is created and drawn but the window becomes stuck to the mouse pointer and doesn't respond to mouse button clicks(but it must be handling mouse move because of the sticky bit?)
In my WndProc, I get the message indicating the mouse left the window, but no further messages until the pointer returns to the app window area).
Screenshots/Video:
No response
Minimal, Complete and Verifiable Example code:
// Here's some code anyone can copy and paste to reproduce your issueImGui::Begin("Example Bug");
MoreCodeToExplainMyIssue();
ImGui::End();
The text was updated successfully, but these errors were encountered:
Version/Branch of Dear ImGui:
Version 1.96, Branch: docking
Back-ends:
imgui_impl_W32.cpp + imgui_impl_Dx9.cpp
Compiler, OS:
Windows 11, VS2022 (but has happened across multiple versions)
Full config/build information:
Details:
I've enabled multi-viewport following the instructions in the wiki (and also https://greich.com/2019/03/02/imgui-multiple-viewports/ ).
The problem occurs when dragging an imgui window from completely inside the application window to outside of the application window. The new imgui window is created and drawn but the window becomes stuck to the mouse pointer and doesn't respond to mouse button clicks(but it must be handling mouse move because of the sticky bit?)
In my WndProc, I get the message indicating the mouse left the window, but no further messages until the pointer returns to the app window area).
Screenshots/Video:
No response
Minimal, Complete and Verifiable Example code:
The text was updated successfully, but these errors were encountered: