Skip to content

Commit

Permalink
Fix a bug to update entry size when importing a new file
Browse files Browse the repository at this point in the history
  • Loading branch information
Xeeynamo committed May 21, 2020
1 parent 2914e12 commit 4812992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenKh.Tools.BarEditor/ViewModels/BarViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public BarViewModel(IEnumerable<BarEntryModel> list) :
SelectedItem.Entry.Stream = memStream;
}
OnPropertyChanged(nameof(SelectedItem.Size));
OnPropertyChanged(nameof(SelectedItem));
}, Filters);
}, x => IsItemSelected);
SearchCommand = new RelayCommand(x => { }, x => false);
Expand Down

0 comments on commit 4812992

Please sign in to comment.