From cd2df41e87d5a7fc3e14d89ae5a65923ac87b93f Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Tue, 27 Dec 2022 17:40:13 +0100 Subject: [PATCH] :bug: Fix problems with transparent frames thumbnails --- frontend/src/app/main/ui/workspace/shapes/frame.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/workspace/shapes/frame.cljs b/frontend/src/app/main/ui/workspace/shapes/frame.cljs index 2ac96c6616..fd11a1e48b 100644 --- a/frontend/src/app/main/ui/workspace/shapes/frame.cljs +++ b/frontend/src/app/main/ui/workspace/shapes/frame.cljs @@ -146,5 +146,5 @@ [:g.frame-thumbnail-wrapper {:id (dm/str "thumbnail-container-" (:id shape)) ;; Hide the thumbnail when not displaying - :opacity (when (and @rendered? (not thumbnail?) (not render-frame?)) 0)} + :opacity (when-not thumbnail? 0)} thumbnail-renderer]]])))))