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
Non embedded windows receive the NOTIFICATION_WM_MOUSE_EXIT notification on startup, when the mouse is not over their area without there being a NOTIFICATION_WM_MOUSE_ENTER before.
Steps to reproduce
Setup a project like this:
Configure, that the root window doesn't embed windows.
SceneTree:
Control
Window
The Window has the following script attached:
extendsWindowfunc_notification(what):
if (what==NOTIFICATION_WM_MOUSE_ENTER):
print("enter")
if (what==NOTIFICATION_WM_MOUSE_EXIT):
print ("exit")
This is the content of the MRP.
Run the project while the mouse is outside of the area, where the Window appears. This causes the following output:
exit
I would expect, that there is no output like it is on linuxbsd.
Sauermann
changed the title
Non-embedded Window receive NOTIFICATION_WM_MOUSE_EXIT notification on startup on Windows platform
Non-embedded Windows receive NOTIFICATION_WM_MOUSE_EXIT notification on startup on Windows platform
Oct 26, 2022
Godot version
v4.0.beta2.official [f8745f2]
System information
Windows 10
Issue description
Non embedded windows receive the
NOTIFICATION_WM_MOUSE_EXIT
notification on startup, when the mouse is not over their area without there being aNOTIFICATION_WM_MOUSE_ENTER
before.Steps to reproduce
Setup a project like this:
Configure, that the root window doesn't embed windows.
SceneTree:
The Window has the following script attached:
This is the content of the MRP.
Run the project while the mouse is outside of the area, where the Window appears. This causes the following output:
I would expect, that there is no output like it is on linuxbsd.
Minimal reproduction project
BugNoWMEnterNotification.zip
The text was updated successfully, but these errors were encountered: