Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Shared/HandyControl_Shared/Controls/Growl/Growl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ private static void InitGrowlPanel(Panel panel)

menuItem.Click += (s, e) =>
{
foreach (var item in panel.Children.OfType<Growl>())
foreach (var item in panel.Children.OfType<Growl>().ToArray())
{
item.Close(false);
}
Expand Down Expand Up @@ -863,7 +863,7 @@ private void Close(bool invokeParam)
{
if (GrowlPanel != null && GrowlPanel.Children.Count == 0 && GetIsCreatedAutomatically(GrowlPanel))
{
// If the count of children is zero, we need to remove the panel, provided that the panel was created automatically
// If the count of children is zero, we need to remove the panel, provided that the panel was created automatically
RemoveDefaultPanel(GrowlPanel);
GrowlPanel = null;
}
Expand Down