Browse Source

fix notification for selected item in listbox issue #4945

Andrey Kunchev 5 years ago
parent
commit
53a06aed3b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/Avalonia.Controls/Selection/SelectionModel.cs

+ 1 - 0
src/Avalonia.Controls/Selection/SelectionModel.cs

@@ -443,6 +443,7 @@ namespace Avalonia.Controls.Selection
             }
 
             if ((e.Action == NotifyCollectionChangedAction.Remove && e.OldStartingIndex <= oldSelectedIndex) ||
+                (e.Action == NotifyCollectionChangedAction.Replace && e.OldStartingIndex == oldSelectedIndex) ||
                 e.Action == NotifyCollectionChangedAction.Reset)
             {
                 RaisePropertyChanged(nameof(SelectedItem));