You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-28 15:22:05 +03:00
make stick headers jump in a bit later so the transition is less jumpy
This commit is contained in:
committed by
Travis Ralston
parent
a2cf641c0e
commit
201f6ebe83
@ -126,7 +126,7 @@ export default class LeftPanel2 extends React.Component<IProps, IState> {
|
||||
header.classList.add("mx_RoomSublist2_headerContainer_stickyBottom");
|
||||
header.style.top = `unset`;
|
||||
gotBottom = true;
|
||||
} else if (slRect.top < top) {
|
||||
} else if ((slRect.top - (headerHeight / 3)) < top) {
|
||||
header.classList.add("mx_RoomSublist2_headerContainer_sticky");
|
||||
header.classList.add("mx_RoomSublist2_headerContainer_stickyTop");
|
||||
header.style.top = `${rlRect.top}px`;
|
||||
|
Reference in New Issue
Block a user