Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Multimedia
Kdenlive
Commits
773f41b1
Commit
773f41b1
authored
Mar 06, 2021
by
Julius Künzel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Titler: Fix crash on load title during animation edit
BUG: 433010
parent
65c66694
Pipeline
#53317
passed with stage
in 10 minutes and 38 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
src/titler/titlewidget.cpp
src/titler/titlewidget.cpp
+6
-0
No files found.
src/titler/titlewidget.cpp
View file @
773f41b1
...
...
@@ -2052,6 +2052,12 @@ void TitleWidget::loadTitle(QUrl url)
i18n
(
"Kdenlive title (*.kdenlivetitle)"
));
}
if
(
url
.
isValid
())
{
if
(
anim_start
->
isChecked
())
{
anim_start
->
setChecked
(
false
);
}
if
(
anim_end
->
isChecked
())
{
anim_end
->
setChecked
(
false
);
}
// make sure we don't delete the guides
qDeleteAll
(
m_guides
);
m_guides
.
clear
();
...
...
Write
Preview
Markdown
is supported
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