Fixes #2739 PI options not visible on small screens#2756
Merged
rwmcintosh merged 2 commits intodevelopfrom Jan 28, 2026
Merged
Conversation
Member
Author
Contributor
Greptile OverviewGreptile SummaryFixed scrollbar visibility issue for Parameter Identification options on small screens by calculating and applying a minimum height to the pivot grid control.
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant View as CategorialParameterIdentificationRunModeView
participant Control as UxPivotGrid
participant ViewInfo as PivotGridViewInfo
Note over View: BindTo(categorialRunModeDTO)
View->>View: Check if layoutItemPivotGrid.Visibility != Never
alt Control is visible
View->>Control: Get OptimalHeight
Control->>Control: EnsureViewInfoIsCalculated()
Control->>ViewInfo: Get Data.ViewInfo
ViewInfo-->>Control: Return ViewInfo
Control->>ViewInfo: Get RowAreaFields.Bounds.Height
Control->>ViewInfo: Get FilterHeaders.Bounds.Height
Control->>ViewInfo: Get RowHeaders.Bounds.Height
Control->>ViewInfo: Get DataHeaders.Bounds.Height
Control->>ViewInfo: Check IsHScrollBarVisible
alt Horizontal scrollbar is visible
Control->>ViewInfo: Add ScrollBarSize.Height
end
Control-->>View: Return calculated height
View->>Control: Set MinimumSize with OptimalHeight
Note over Control: Scrollbar now displays correctly
end
|
src/OSPSuite.UI/Views/ParameterIdentifications/CategorialParameterIdentificationRunModeView.cs
Outdated
Show resolved
Hide resolved
…eterIdentificationRunModeView.cs Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
Yuri05
approved these changes
Jan 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Fixes #2739 PI options not visible on small screens
Description
Calculate and apply a min height for the control. The scrollbar would not be displayed until this was done
Type of change
Please mark relevant options with an
xin the brackets.How Has This Been Tested?
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration
Reviewer checklist
Mark everything that needs to be checked before merging the PR.
This change requires a documentation updateabove is selectedScreenshots (if appropriate):
Questions (if appropriate):