2024-10-07, 07:35 PM
(2024-10-06, 05:38 PM)TheDreadPirate Wrote: Looking at the line mentioned in that github issue, turning off smooth scrolling in the OS's browser settings would also turn it off in the jellyfin app.
But if you want a jellyfin app specific change, you'd have to clone the git as documented below.
https://github.com/jellyfin/jellyfin-tiz...ng-started
And change this line located at jellyfin-web/src/components/scrollManager.js
https://github.com/jellyfin/jellyfin-web...er.js#L480
And change it to
Code:return false;
Thanks for the reply. So the commit mentioned in the issue I posted doesn't add a UI setting for turning on and off Smooth Scrolling? Sorry for the noob question, but I don't know that much about coding.
If so, then the only way to disable Smooth Scrolling for the Tizen official app is to replace that line with return false and compile the wgt file again (and then deploy)? Is there any plan to add that setting in the UI (at least for the Tizen app)?
TBH, I don't know the reason why it's the only client that has that feature enabled by default, since it greatly reduces the UI performance (experienced by many users. Without disabling background images it's practically not usable, and with them disabled, it's still very slow). Looking at the code, for some reason, it's the only client with it enabled by default, all the other clients have it disabled. Could be useful to have a UI setting for that, or at least leaving it disabled as default for all clients (I don't see why the Tizen app should be an exception for leaving it enabled).
Thanks again.