Reduced OSD timeout from 5 seconds to 3

This commit is contained in:
sparky8251 2020-03-07 12:01:36 -05:00
parent 9576cd61e0
commit feacdcd1aa

View file

@ -376,7 +376,7 @@ define(["playbackManager", "dom", "inputManager", "datetime", "itemHelper", "med
function startOsdHideTimer() { function startOsdHideTimer() {
stopOsdHideTimer(); stopOsdHideTimer();
osdHideTimeout = setTimeout(hideOsd, 5e3); osdHideTimeout = setTimeout(hideOsd, 3e3);
} }
function stopOsdHideTimer() { function stopOsdHideTimer() {