|
|
@@ -53,7 +53,13 @@ export default class ListView extends View {
|
|
|
|
|
|
|
|
|
updateSize(totalHeight, isAuto, isResize) {
|
|
|
- this.scroller.setHeight(this.computeScrollerHeight(totalHeight))
|
|
|
+ super.updateSize(totalHeight, isAuto, isResize)
|
|
|
+
|
|
|
+ this.scroller.clear() // sets height to 'auto' and clears overflow
|
|
|
+
|
|
|
+ if (!isAuto) {
|
|
|
+ this.scroller.setHeight(this.computeScrollerHeight(totalHeight))
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|