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
ce05e2e4
Commit
ce05e2e4
authored
Jan 29, 2022
by
Jean-Baptiste Mardelle
Browse files
when saving effect, show it under its name, not id in effect list
parent
0b7ab8dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/effects/effectlist/model/effecttreemodel.cpp
View file @
ce05e2e4
...
...
@@ -129,7 +129,8 @@ void EffectTreeModel::reloadEffect(const QString &path)
}
}
bool
isFav
=
KdenliveSettings
::
favorite_effects
().
contains
(
asset
.
first
);
QList
<
QVariant
>
data
{
asset
.
first
,
asset
.
first
,
QVariant
::
fromValue
(
AssetListType
::
AssetType
::
Custom
),
isFav
};
QString
effectName
=
EffectsRepository
::
get
()
->
getName
(
asset
.
first
);
QList
<
QVariant
>
data
{
effectName
,
asset
.
first
,
QVariant
::
fromValue
(
AssetListType
::
AssetType
::
Custom
),
isFav
};
m_customCategory
->
appendChild
(
data
);
}
...
...
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