Index: trunk/src/Dam/Forms/DamSpatialEditorDecorator.cs =================================================================== diff -u -r29 -r30 --- trunk/src/Dam/Forms/DamSpatialEditorDecorator.cs (.../DamSpatialEditorDecorator.cs) (revision 29) +++ trunk/src/Dam/Forms/DamSpatialEditorDecorator.cs (.../DamSpatialEditorDecorator.cs) (revision 30) @@ -109,7 +109,7 @@ DisableSelectionOfNonEditableShapes(); // Disable edit mode, because now it is not stable enough (MWDAM-915) - decoratedSpatialEditor.GetShapeInfo(typeof(DrawingCharacteristicPoint)).AllowSelect = true; + decoratedSpatialEditor.GetShapeInfo(typeof(DrawingCharacteristicPoint)).AllowSelect = false; EditMode = false; Index: trunk/src/Dam/Forms/DamGeometryEditor.cs =================================================================== diff -u -r29 -r30 --- trunk/src/Dam/Forms/DamGeometryEditor.cs (.../DamGeometryEditor.cs) (revision 29) +++ trunk/src/Dam/Forms/DamGeometryEditor.cs (.../DamGeometryEditor.cs) (revision 30) @@ -50,7 +50,8 @@ geometryEditor.MainBar.LinksPersistInfo.Add(new LinkPersistInfo(nextButton)); geometryEditor.MainBar.LinksPersistInfo.Add(new LinkPersistInfo(probabilityItem)); geometryEditor.MainBar.LinksPersistInfo.Add(new LinkPersistInfo(soilProfileLabel)); - geometryEditor.MainBar.LinksPersistInfo.Insert(2, new LinkPersistInfo(editMode)); //TODO disabled line editing of characteristic points (MWDAM-915) +// geometryEditor.MainBar.LinksPersistInfo.Insert(2, new LinkPersistInfo(editMode)); // Disable line editing of characteristic points (MWDAM-915) + BindSupport.Bind(panel, projectTypeBarItem, spatialEditor.GetType(), StaticReflection.GetMemberName(x => x.FailureMechanismType)); BindSupport.Bind(panel, previousButton, spatialEditor.GetType(), StaticReflection.GetMemberName(x => x.Previous())); BindSupport.Bind(panel, nextButton, spatialEditor.GetType(), StaticReflection.GetMemberName(x => x.Next()));