mirror of
https://github.com/godotengine/godot.git
synced 2024-12-03 17:42:12 +00:00
Merge pull request #74017 from SaracenOne/fix_toaster_notification_flicker
Stop toaster notification circle flickering
This commit is contained in:
commit
c46716118f
@ -90,10 +90,10 @@ void EditorToaster::_notification(int p_what) {
|
||||
}
|
||||
|
||||
// Hide element if it is not visible anymore.
|
||||
if (modulate_fade.a <= 0 && element.key->is_visible()) {
|
||||
if (modulate_fade.a <= 0.0 && element.key->is_visible()) {
|
||||
element.key->hide();
|
||||
needs_update = true;
|
||||
} else if (modulate_fade.a >= 0 && !element.key->is_visible()) {
|
||||
} else if (modulate_fade.a > 0.0 && !element.key->is_visible()) {
|
||||
element.key->show();
|
||||
needs_update = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user