DocumentContainer does as well

This commit is contained in:
Sasha Koshka 2023-03-17 02:00:19 -04:00
parent d651570746
commit 0f272f4835
1 changed files with 3 additions and 0 deletions

View File

@ -181,6 +181,9 @@ func (element *DocumentContainer) redoAll () {
if parent, ok := element.core.Parent().(elements.ScrollableParent); ok {
parent.NotifyScrollBoundsChange(element)
}
if element.onScrollBoundsChange != nil {
element.onScrollBoundsChange()
}
}
func (element *DocumentContainer) partition () {