diff -r dde0338cb539 -r 0e4e63f6f567 client/src/Iri.Modernisation.Controls/ViewModel/ProductionTimeLine/CustomableVideoElementVM.cs --- a/client/src/Iri.Modernisation.Controls/ViewModel/ProductionTimeLine/CustomableVideoElementVM.cs Thu Dec 03 16:05:43 2009 +0100 +++ b/client/src/Iri.Modernisation.Controls/ViewModel/ProductionTimeLine/CustomableVideoElementVM.cs Thu Dec 03 16:05:57 2009 +0100 @@ -23,6 +23,7 @@ _runTime = paramSeq.RunTime; _beginTrim = paramSeq.BeginTrim; _endTrim = paramSeq.EndTrim; + OnPropertyChanged("Duration"); } @@ -83,6 +84,21 @@ } } + + private VideoChapterType _chapter; + public VideoChapterType Chapter + { + get + { + return _chapter; + } + set + { + _chapter = value; + OnPropertyChanged("Chapter"); + } + } + public new TimeSpan DurationTimeSpan { get