mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
Changed trickplay debounce to 10ms and added padding for EpisodeList
This commit is contained in:
@@ -292,7 +292,7 @@ export const Controls: React.FC<Props> = ({
|
||||
const minutes = Math.floor((progressInSeconds % 3600) / 60);
|
||||
const seconds = progressInSeconds % 60;
|
||||
setTime({ hours, minutes, seconds });
|
||||
}, 20), // 100ms debounce delay
|
||||
}, 10),
|
||||
[]
|
||||
);
|
||||
|
||||
|
||||
@@ -203,7 +203,7 @@ export const EpisodeList: React.FC<Props> = ({ item, close }) => {
|
||||
style={{
|
||||
justifyContent: "space-between",
|
||||
}}
|
||||
className={`flex flex-row items-center space-x-2 z-10 py-4 pr-4`}
|
||||
className={`flex flex-row items-center space-x-2 z-10 p-4`}
|
||||
>
|
||||
{seriesItem && (
|
||||
<SeasonDropdown
|
||||
|
||||
Reference in New Issue
Block a user