mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Fix settings not offsetting scroll operations by fixed header content
This commit is contained in:
@ -123,6 +123,8 @@ namespace osu.Game.Graphics.Containers
|
||||
originalSectionsMargin = sectionsContainer.Margin;
|
||||
}
|
||||
|
||||
public void ScrollTo(Drawable section) => ScrollContainer.ScrollTo(ScrollContainer.GetChildPosInContent(section) - FixedHeader.BoundingBox.Height);
|
||||
|
||||
private float lastKnownScroll;
|
||||
protected override void UpdateAfterChildren()
|
||||
{
|
||||
|
@ -93,7 +93,7 @@ namespace osu.Game.Overlays
|
||||
new SidebarButton
|
||||
{
|
||||
Section = section,
|
||||
Action = b => sectionsContainer.ScrollContainer.ScrollTo(b),
|
||||
Action = s => sectionsContainer.ScrollTo(s),
|
||||
}
|
||||
).ToArray()
|
||||
}
|
||||
|
Reference in New Issue
Block a user