Merge pull request #903 from sparky8251/reduce-osd-hide-timeout

Reduced OSD timeout from 5 seconds to 3
This commit is contained in:
Joshua M. Boniface 2020-03-07 12:20:31 -05:00 committed by GitHub
commit 75bbd4c8ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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