Stop toaster notification circle flickering when notifications are all hidden.

This commit is contained in:
SaracenOne 2023-02-27 02:33:49 +00:00
parent 1bd0b296e1
commit ab61624c78

View File

@ -90,10 +90,10 @@ void EditorToaster::_notification(int p_what) {
} }
// Hide element if it is not visible anymore. // 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(); element.key->hide();
needs_update = true; 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(); element.key->show();
needs_update = true; needs_update = true;
} }