mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 04:53:29 +01:00
automatically set TreatSizeAsMaximum for height-based scrolling panels
This commit is contained in:
parent
ab96e97f8e
commit
ee2b0266aa
3 changed files with 3 additions and 3 deletions
|
@ -29,7 +29,7 @@ Additions
|
||||||
- Added the ability to display tooltips using the auto-nav style even when using the mouse
|
- Added the ability to display tooltips using the auto-nav style even when using the mouse
|
||||||
|
|
||||||
Improvements
|
Improvements
|
||||||
- Allow scrolling panels to set height based on children with TreatSizeAsMaximum
|
- Allow scrolling panels to set height based on children by setting TreatSizeAsMaximum
|
||||||
|
|
||||||
Fixes
|
Fixes
|
||||||
- Fixed hidden scroll bars inhibiting scrolling on their parent panel
|
- Fixed hidden scroll bars inhibiting scrolling on their parent panel
|
||||||
|
|
|
@ -226,8 +226,7 @@ namespace Demos {
|
||||||
this.root.AddChild(new VerticalSpace(3));
|
this.root.AddChild(new VerticalSpace(3));
|
||||||
var dynamicSubPanel = this.root.AddChild(new Panel(Anchor.AutoLeft, new Vector2(1, 50), Vector2.Zero, true, true) {
|
var dynamicSubPanel = this.root.AddChild(new Panel(Anchor.AutoLeft, new Vector2(1, 50), Vector2.Zero, true, true) {
|
||||||
Texture = null,
|
Texture = null,
|
||||||
ChildPadding = Padding.Empty,
|
ChildPadding = Padding.Empty
|
||||||
TreatSizeAsMaximum = true
|
|
||||||
});
|
});
|
||||||
dynamicSubPanel.AddChild(new Paragraph(Anchor.AutoLeft, 1, "This is a dynamic height nested panel with a maximum height, at which point it starts displaying a scroll bar instead!"));
|
dynamicSubPanel.AddChild(new Paragraph(Anchor.AutoLeft, 1, "This is a dynamic height nested panel with a maximum height, at which point it starts displaying a scroll bar instead!"));
|
||||||
dynamicSubPanel.AddChild(new Button(Anchor.AutoLeft, new Vector2(1, 10), "Press to add more") {
|
dynamicSubPanel.AddChild(new Button(Anchor.AutoLeft, new Vector2(1, 10), "Press to add more") {
|
||||||
|
|
|
@ -78,6 +78,7 @@ namespace MLEM.Ui.Elements {
|
||||||
public Panel(Anchor anchor, Vector2 size, Vector2 positionOffset, bool setHeightBasedOnChildren = false, bool scrollOverflow = false, bool autoHideScrollbar = true) : base(anchor, size) {
|
public Panel(Anchor anchor, Vector2 size, Vector2 positionOffset, bool setHeightBasedOnChildren = false, bool scrollOverflow = false, bool autoHideScrollbar = true) : base(anchor, size) {
|
||||||
this.PositionOffset = positionOffset;
|
this.PositionOffset = positionOffset;
|
||||||
this.SetHeightBasedOnChildren = setHeightBasedOnChildren;
|
this.SetHeightBasedOnChildren = setHeightBasedOnChildren;
|
||||||
|
this.TreatSizeAsMaximum = setHeightBasedOnChildren && scrollOverflow;
|
||||||
this.scrollOverflow = scrollOverflow;
|
this.scrollOverflow = scrollOverflow;
|
||||||
this.CanBeSelected = false;
|
this.CanBeSelected = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue