Skip to content

Commit

Permalink
Merge pull request #929 from HicServices/fix-validation-clipping
Browse files Browse the repository at this point in the history
Layout fix in SecondaryconstraintUI
  • Loading branch information
tznind authored Feb 18, 2022
2 parents b4fb4b7 + eaf27f4 commit 8bef667
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed closing and changing instance not consulting tabs before closing
- Fixed bug where setting `SuggestedCategory` on a plugin command resulted in it vanishing from context menu
- Fixed bug with AllowEmptyExtractions not working under some situations
- Fixed layout bug in rule validation configuration UI where rationale tip was cut off [#909](https://github.com/HicServices/RDMP/issues/909)

### Changed

Expand Down
2 changes: 1 addition & 1 deletion Rdmp.UI/Validation/SecondaryConstraintUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public SecondaryConstraintUI(ICatalogueRepository repository,SecondaryConstraint
//first row
tableLayoutPanel1.RowStyles[0].SizeType = SizeType.AutoSize;

Height = (_requiredProperties.Length * rowHeight) + 35 + inflation;
Height = (_requiredProperties.Length * rowHeight) + 45 + inflation;

loadingComplete = true;

Expand Down

0 comments on commit 8bef667

Please sign in to comment.