-
-
Notifications
You must be signed in to change notification settings - Fork 10.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Avoid mouse mask when using popup. #3929
Comments
Oops did too little searching in the issues i found have found a issue which references this (#718), but i found that using a primitive drawlist implementation is much better performance wise and was easy to make. |
There is a
|
Well a snackbar should be able to have a button which using no input would not allow, there is also the thing when you press any button the pop-up closes. |
Do you mean that you wanted inputs to reach the window BUT also to reach other windows around/behind it? In which case, yes, the purpose of popups is specifically to disallow the later as they are designed to be closed by clicking outside of their bounds. So if I understand this properly, yes, using a regular windows would work. |
Yes that is my intent, i just got a bit of tunnel vision on using popups for this. |
Version/Branch of Dear ImGui:
Version: bf497d2
Branch: Shadow (Using master doesn't fix this issue.)
Back-end/Renderer/Compiler/OS
Back-ends: imgui_impl_dx9.cpp + imgui_impl_win32.cpp
Compiler: MSVC2019
Operating System: Windows 10
My Issue/Question:
I am trying to make a sort of snackbar, i would like to-do this using popups, but i dont want to capture mouse inputs, it just needs to be a top window.
Is there any way to avoid capturing mouse inputs to-do this or should i make this myself?
Standalone, minimal, complete and verifiable example: (see #2261)
The text was updated successfully, but these errors were encountered: