Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix [DYN-5197] re-enable dismiss notifications panel by clicking the bell #14734

Merged
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
6 changes: 5 additions & 1 deletion src/Notifications/NotificationCenterController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,12 @@ private void DynamoView_SizeChanged(object sender, SizeChangedEventArgs e)
/// <param name="e"></param>
private void DynamoView_PreviewMouseDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
{
string popupBellID = "FontAwesome5.FontAwesome";
if (!notificationUIPopup.IsOpen) return;
notificationUIPopup.IsOpen = false;
if(e.OriginalSource.ToString() != popupBellID)
{
notificationUIPopup.IsOpen = false;
}
}

/// <summary>
Expand Down
Loading