aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionStackingView.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-08-13 09:08:04 -0400
committerbobzel <zzzman@gmail.com>2020-08-13 09:08:04 -0400
commit7d4867438fa2aa55a58184649f4e5042a68a3fd9 (patch)
tree77e0f8bb0e0ced1276283090b1d33c2f0f33f24c /src/client/views/collections/CollectionStackingView.tsx
parent75dc5eb094bbac18310d4be49529743eb051789c (diff)
got rid of mainviewnotifs in favor of having badges for any fonticonbox
Diffstat (limited to 'src/client/views/collections/CollectionStackingView.tsx')
-rw-r--r--src/client/views/collections/CollectionStackingView.tsx3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/client/views/collections/CollectionStackingView.tsx b/src/client/views/collections/CollectionStackingView.tsx
index e479fa639..2b7ae4338 100644
--- a/src/client/views/collections/CollectionStackingView.tsx
+++ b/src/client/views/collections/CollectionStackingView.tsx
@@ -149,8 +149,6 @@ export class CollectionStackingView extends CollectionSubView(StackingDocument)
() => this.pivotField,
() => this.layoutDoc._columnHeaders = new List()
);
-
- this.props.Document._scrollTop = 0;
}
componentWillUnmount() {
super.componentWillUnmount();
@@ -494,7 +492,6 @@ export class CollectionStackingView extends CollectionSubView(StackingDocument)
onScroll={action(e => {
if (!this.props.isSelected() && this.props.renderDepth) e.currentTarget.scrollTop = this._scroll;
else this._scroll = e.currentTarget.scrollTop;
- this.props.Document._scrollTop = this._scroll; // used by MainViewNotifs to determine position of the notification bubble
})}
onDrop={this.onExternalDrop.bind(this)}
onContextMenu={this.onContextMenu}