diff --git a/PROMS/VEPROMS User Interface/frmVersionsProperties.cs b/PROMS/VEPROMS User Interface/frmVersionsProperties.cs index a49f25b3..00a16a99 100644 --- a/PROMS/VEPROMS User Interface/frmVersionsProperties.cs +++ b/PROMS/VEPROMS User Interface/frmVersionsProperties.cs @@ -1387,6 +1387,14 @@ namespace VEPROMS _Apples.Remove(cfg); bsApples.DataSource = null; bsApples.DataSource = _Apples; + // C2018-010: When removing an applicability, info on right side still contains old content. Do refreshes and reset datasource to fix this. + this.lbApplicabilities.Refresh(); + if (_Apples != null && _Apples.Count > 0) + { + lbApplicabilities.SelectedIndex = 0; + bsMiniApple.DataSource = bsApples.Current as MiniConfig; + btnDelApple.Enabled = true; + } } }