From fcdd03bf73c7d4ee2ad8a77f182ef510fc97c06a Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Fri, 22 Mar 2019 22:42:28 +1100 Subject: [PATCH] fixed crash when loading shared transition --- project/loadthread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/loadthread.cpp b/project/loadthread.cpp index 969c23214..9e616dfe4 100644 --- a/project/loadthread.cpp +++ b/project/loadthread.cpp @@ -103,7 +103,7 @@ void LoadThread::load_effect(QXmlStreamReader& stream, Clip* c) { c->closing_transition = (sharing_clip->opening_transition); // since this is the closed clip, make this clip the secondary - c->opening_transition->secondary_clip = c; + c->closing_transition->secondary_clip = c; } return; }