1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #4805 from dmitrylyzo/slider-force-change

This commit is contained in:
Bill Thornton 2023-09-26 23:07:55 -04:00 committed by GitHub
commit 6f4a2b86a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -501,6 +501,13 @@ function onKeyDown(e) {
e.preventDefault();
e.stopPropagation();
break;
case 'Enter':
if (this.keyboardDragging) {
finishKeyboardDragging(this);
e.preventDefault();
e.stopPropagation();
}
break;
}
}