-
-
Notifications
You must be signed in to change notification settings - Fork 21.8k
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
Tooltips are not shown when the scene tree is paused. #29362
Comments
Likely related: #29101 |
Any hope of this ever getting resolved? Just wondering as it's not an obvious behavior and it's not noted in the documentation. Took me over an hour of flipping my project upside down to figure out that it was the pause state of the tree that caused hints to sometimes not show up. |
Maybe this should just be mentioned in the docs... |
@KoBeWi So I would imagine this could affect a lot of people and is more of a bug than an enhancement. |
Godot version: master (e9be875)
OS/device including version: Arch Linux
Issue description: Tooltips are not shown when the scene tree is paused.
This is possibly caused by
tooltip_timer
s being managed in the root viewport'sNOTIFICATION_INTERNAL_PROCESS
. The root viewport likely has aPAUSE_MODE_INHERIT
by default, so the notification in question won't be sent when the tree is paused.Steps to reproduce:
pause_mode
.Minimal reproduction project: pause-tooltip.zip
The text was updated successfully, but these errors were encountered: