From 5d0d82bc0a70bf9ccba542ac11ee54755de12031 Mon Sep 17 00:00:00 2001 From: Paul Kaplan Date: Tue, 4 Dec 2018 12:34:24 -0500 Subject: [PATCH] Make sure to never set the ghost property without considering the forceTransparentPreview property as well. --- src/io/video.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/video.js b/src/io/video.js index 4f848215b..eac84f4d4 100644 --- a/src/io/video.js +++ b/src/io/video.js @@ -163,7 +163,7 @@ class Video { // if we haven't already created and started a preview frame render loop, do so if (!this._renderPreviewFrame) { renderer.updateDrawableProperties(this._drawable, { - ghost: this._ghost, + ghost: this._forceTransparentPreview ? 100 : this._ghost, visible: true });