mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 14:17:26 +08:00
invalidate scroll position
This commit is contained in:
parent
20222f09c4
commit
6bea744e34
@ -202,8 +202,6 @@ namespace osu.Game.Graphics.Containers
|
||||
});
|
||||
}
|
||||
|
||||
private int lastKnownChildrenCount;
|
||||
|
||||
protected override void UpdateAfterChildren()
|
||||
{
|
||||
base.UpdateAfterChildren();
|
||||
@ -222,12 +220,10 @@ namespace osu.Game.Graphics.Containers
|
||||
}
|
||||
|
||||
float currentScroll = scrollContainer.Current;
|
||||
var presentChildren = Children.Where(c => c.IsPresent);
|
||||
|
||||
if (currentScroll != lastKnownScroll || presentChildren.Count() != lastKnownChildrenCount)
|
||||
if (currentScroll != lastKnownScroll)
|
||||
{
|
||||
lastKnownScroll = currentScroll;
|
||||
lastKnownChildrenCount = presentChildren.Count();
|
||||
|
||||
// reset last clicked section because user started scrolling themselves
|
||||
if (scrollContainer.UserScrolling)
|
||||
@ -253,6 +249,8 @@ namespace osu.Game.Graphics.Containers
|
||||
|
||||
float scrollCentre = fixedHeaderSize + scrollContainer.DisplayableContent * scroll_y_centre + selectionLenienceAboveSection;
|
||||
|
||||
var presentChildren = Children.Where(c => c.IsPresent);
|
||||
|
||||
if (lastClickedSection != null)
|
||||
SelectedSection.Value = lastClickedSection;
|
||||
else if (Precision.AlmostBigger(0, scrollContainer.Current))
|
||||
|
@ -211,7 +211,7 @@ namespace osu.Game.Overlays
|
||||
|
||||
loading.Hide();
|
||||
|
||||
searchTextBox.Current.BindValueChanged(term => SectionsContainer.SearchContainer.SearchTerm = term.NewValue, true);
|
||||
searchTextBox.Current.BindValueChanged(term => SectionsContainer.SearchTerm = term.NewValue, true);
|
||||
searchTextBox.TakeFocus();
|
||||
|
||||
loadSidebarButtons();
|
||||
|
Loading…
Reference in New Issue
Block a user