Fixes a bug case

This commit is contained in:
Paul Schneider 2016-11-10 12:26:55 +01:00
commit c1fb8a9c48

View file

@ -31,7 +31,7 @@ namespace BookAStar.ViewModels
private void Bill_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
Data.Bill = Bill;
Data.Bill = new List<BillingLine>( Bill );
NotifyPropertyChanged("FormattedTotal");
}
private Estimate data;