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
f37c1d8e
Commit
f37c1d8e
authored
May 21, 2019
by
Jean-Baptiste Mardelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix custom effect appearing with wrong name after save
Related to
#188
parent
77ac9a00
Pipeline
#3676
passed with stage
in 20 minutes and 26 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/effects/effectlist/model/effecttreemodel.cpp
src/effects/effectlist/model/effecttreemodel.cpp
+1
-1
No files found.
src/effects/effectlist/model/effecttreemodel.cpp
View file @
f37c1d8e
...
...
@@ -125,7 +125,7 @@ void EffectTreeModel::reloadEffect(const QString &path)
return
;
}
bool
isFav
=
KdenliveSettings
::
favorite_effects
().
contains
(
asset
.
first
);
QList
<
QVariant
>
data
{
asset
.
second
,
asset
.
first
,
QVariant
::
fromValue
(
EffectType
::
Custom
),
isFav
};
QList
<
QVariant
>
data
{
asset
.
first
,
asset
.
first
,
QVariant
::
fromValue
(
EffectType
::
Custom
),
isFav
};
m_customCategory
->
appendChild
(
data
);
}
...
...
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