Add transient notifications pool

This commit is contained in:
Ivaylo Draganov
2022-04-29 15:01:33 +03:00
committed by Paul Chote
parent e22b6de4e8
commit a1e6ac85dc
5 changed files with 17 additions and 5 deletions

View File

@@ -80,7 +80,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
static bool IsNotificationEligible(TextNotification notification)
{
return notification.Pool == TextNotificationPool.Feedback;
return notification.Pool == TextNotificationPool.Transients || notification.Pool == TextNotificationPool.Feedback;
}
bool disposed = false;