Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
c147774f
Commit
c147774f
authored
Jun 29, 2019
by
Jean-Baptiste Mardelle
Browse files
Fix lambda not called regression
parent
ad4b1320
Pipeline
#4738
passed with stage
in 13 minutes and 48 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/model/clipmodel.cpp
View file @
c147774f
...
...
@@ -111,7 +111,7 @@ int ClipModel::construct(const std::shared_ptr<TimelineModel> &parent, const QSt
}
auto
result
=
binClip
->
giveMasterAndGetTimelineProducer
(
id
,
producer
,
state
);
std
::
shared_ptr
<
ClipModel
>
clip
(
new
ClipModel
(
parent
,
result
.
first
,
binClipId
,
id
,
state
,
speed
));
clip
->
setClipState_lambda
(
state
);
clip
->
setClipState_lambda
(
state
)
()
;
parent
->
registerClip
(
clip
);
clip
->
m_effectStack
->
importEffects
(
producer
,
state
,
result
.
second
);
clip
->
m_clipMarkerModel
->
setReferenceModel
(
binClip
->
getMarkerModel
(),
speed
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment