From 89dd4720a44a1f55159d381ae7dbecf4cf994f7c Mon Sep 17 00:00:00 2001
From: Corey Frang <gnarf37@gmail.com>
Date: Thu, 5 Apr 2018 15:46:59 -0400
Subject: [PATCH] store ghost state so previews will use last value whenever
 setup

---
 src/io/video.js | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/io/video.js b/src/io/video.js
index f961ce485..aba3f3dd4 100644
--- a/src/io/video.js
+++ b/src/io/video.js
@@ -56,6 +56,12 @@ class Video {
          * @type {Drawable}
          */
         this._drawable = -1;
+
+        /**
+         * Store the last state of the video transparency ghost effect
+         * @type {number}
+         */
+        this._ghost = 0;
     }
 
     static get FORMAT_IMAGE_DATA () {