diff options
| author | RblSb <msrblsb@gmail.com> | 2020-04-26 06:14:07 +0300 |
|---|---|---|
| committer | RblSb <msrblsb@gmail.com> | 2020-04-26 11:00:30 +0300 |
| commit | e0f2520fb03ed07a38e96c012c0f599b2fbe7f04 (patch) | |
| tree | 3b990453720b8193350ab5557abd410119160dd6 /src/client/players | |
| parent | 3c5fda212a8b895027c3853d9979b12a8f6c5798 (diff) | |
Fix autoscroll with unloaded images
Diffstat (limited to 'src/client/players')
| -rw-r--r-- | src/client/players/Raw.hx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/players/Raw.hx b/src/client/players/Raw.hx index 4fa000b..266f0a2 100644 --- a/src/client/players/Raw.hx +++ b/src/client/players/Raw.hx @@ -71,8 +71,8 @@ class Raw implements IPlayer { } function restartControlsHider():Void { - if (Utils.isTouch()) return; video.controls = true; + if (Utils.isTouch()) return; if (controlsHider != null) controlsHider.stop(); controlsHider = Timer.delay(() -> { video.controls = false; |
