You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Stop toaster notification circle flickering when notifications are all hidden.
(cherry picked from commit ab61624c78)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user