mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-09-15 17:46:55 +00:00
4.0.0-rc4.2
* Fixed: Issue scrolling up with Smooth Scrolling enabled and Freeze on Hover disabled.
This commit is contained in:
parent
6201555da5
commit
a23bc74ae4
3 changed files with 7 additions and 2 deletions
|
@ -100,7 +100,7 @@ class FrankerFaceZ extends Module {
|
|||
FrankerFaceZ.Logger = Logger;
|
||||
|
||||
const VER = FrankerFaceZ.version_info = {
|
||||
major: 4, minor: 0, revision: 0, extra: '-rc4.1',
|
||||
major: 4, minor: 0, revision: 0, extra: '-rc4.2',
|
||||
build: __webpack_hash__,
|
||||
toString: () =>
|
||||
`${VER.major}.${VER.minor}.${VER.revision}${VER.extra || ''}${DEBUG ? '-dev' : ''}`
|
||||
|
|
|
@ -274,7 +274,7 @@ export default class Scroller extends Module {
|
|||
}
|
||||
|
||||
const smoothAnimation = () => {
|
||||
if ( this.state.ffzFrozen )
|
||||
if ( this.state.ffzFrozen || ! this.state.isAutoScrolling )
|
||||
return this.ffz_is_smooth_scrolling = false;
|
||||
|
||||
// See how much time has passed to get a step based off the delta
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue