diff -r de06fa7242ae -r ab3057b82260 client/src/Iri.Modernisation.Controls/View/AnnotationMaker/AnnotationMaker.xaml.cs --- a/client/src/Iri.Modernisation.Controls/View/AnnotationMaker/AnnotationMaker.xaml.cs Fri Feb 12 12:24:46 2010 +0100 +++ b/client/src/Iri.Modernisation.Controls/View/AnnotationMaker/AnnotationMaker.xaml.cs Fri Feb 12 15:57:01 2010 +0100 @@ -9,6 +9,7 @@ using System.Windows.Shapes; using Iri.Modernisation.Data.Models; using Iri.Modernisation.BaseMVVM.Commands; +using Iri.Modernisation.Controls.ViewModel; namespace Iri.Modernisation.Controls.View { public partial class AnnotationMaker : UserControl @@ -17,10 +18,19 @@ { InitializeComponent(); + Commands.AnnotationMaker.FixAnnotationTime.Executed += new EventHandler(FixAnnotationTime_Executed); Commands.HttpSenderResponse.Executed += new EventHandler(HttpSenderResponse_Executed); - - - } + } + + void FixAnnotationTime_Executed(object sender, SLExtensions.Input.ExecutedEventArgs e) + { + EditableAnnotation.UpperRangeValue = EditableAnnotation.Maximum; + EditableAnnotation.LowerRangeValue = EditableAnnotation.Minimum; + } + + + + void HttpSenderResponse_Executed(object sender, SLExtensions.Input.ExecutedEventArgs e) {