diff -r 44a2dc869e28 -r f292db96b050 client/src/Iri.Modernisation.Controls/ViewModel/ProductionTimeLine/CustomableVideoElementVM.cs --- a/client/src/Iri.Modernisation.Controls/ViewModel/ProductionTimeLine/CustomableVideoElementVM.cs Tue Dec 22 16:22:22 2009 +0100 +++ b/client/src/Iri.Modernisation.Controls/ViewModel/ProductionTimeLine/CustomableVideoElementVM.cs Mon Jan 04 10:29:39 2010 +0100 @@ -82,8 +82,8 @@ } } - private double _duration; - public new double Duration + + public double Duration { get { @@ -106,7 +106,27 @@ } } - public new TimeSpan DurationTimeSpan + private Color _chapterColor; + public Color ChapterColor + { + get + { + return _chapterColor; + } + set + { + _chapterColor = value; + OnPropertyChanged("ChapterColor"); + } + } + public SolidColorBrush ChapterSolidColorBrush + { + get + { + return new SolidColorBrush(this.ChapterColor); + } + } + public TimeSpan DurationTimeSpan { get {