Index: Ringtoets/Common/src/Ringtoets.Common.Forms/TreeNodeInfos/RingtoetsContextMenuItemFactory.cs =================================================================== diff -u -r11c6d40de442b2548ca1134ee5bd5cf754549de4 -rada94ef2b6943fb9a2d8e59256871205a7d4c4ee --- Ringtoets/Common/src/Ringtoets.Common.Forms/TreeNodeInfos/RingtoetsContextMenuItemFactory.cs (.../RingtoetsContextMenuItemFactory.cs) (revision 11c6d40de442b2548ca1134ee5bd5cf754549de4) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/TreeNodeInfos/RingtoetsContextMenuItemFactory.cs (.../RingtoetsContextMenuItemFactory.cs) (revision ada94ef2b6943fb9a2d8e59256871205a7d4c4ee) @@ -384,7 +384,8 @@ Action> updateAction) where TCalculationInput : ICalculationInput, IHasForeshoreProfile { - bool hasForeshoreProfile = calculation.InputParameters.ForeshoreProfile != null; + TCalculationInput input = calculation.InputParameters; + bool hasForeshoreProfile = input.ForeshoreProfile != null && !input.IsForeshoreProfileParametersSynchronized; string toolTipMessage = hasForeshoreProfile ? Resources.CreateUpdateForshoreProfileOfCalculationItem_Update_calculation_with_ForeshoreProfile_ToolTip : Resources.CreateUpdateForshoreProfileOfCalculationItem_Update_calculation_no_ForeshoreProfile_ToolTip;