Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Kdenlive
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
258
Issues
258
List
Boards
Labels
Service Desk
Milestones
Merge Requests
15
Merge Requests
15
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Multimedia
Kdenlive
Commits
605b3ba2
Commit
605b3ba2
authored
Aug 07, 2019
by
Jean-Baptiste Mardelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix slideshow effects disappearing.
Fixes
#316
parent
0347b49b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
1 deletion
+9
-1
data/blacklisted_effects.txt
data/blacklisted_effects.txt
+1
-1
data/effects/CMakeLists.txt
data/effects/CMakeLists.txt
+1
-0
data/effects/luma.xml
data/effects/luma.xml
+4
-0
src/doc/documentchecker.cpp
src/doc/documentchecker.cpp
+3
-0
No files found.
data/blacklisted_effects.txt
View file @
605b3ba2
...
...
@@ -15,7 +15,7 @@ frei0r.perspective
#Effects not usable with a simple GUI
#ladspa
jackrack
luma
#
luma
data_show
gtkrescale
watermark
...
...
data/effects/CMakeLists.txt
View file @
605b3ba2
...
...
@@ -20,6 +20,7 @@ grain.xml
greyscale.xml
invert.xml
loudness.xml
luma.xml
mirror.xml
mute.xml
normalise.xml
...
...
data/effects/luma.xml
0 → 100644
View file @
605b3ba2
<!DOCTYPE kpartgui>
<effect
tag=
"luma"
id=
"luma"
type=
"hidden"
>
</effect>
src/doc/documentchecker.cpp
View file @
605b3ba2
...
...
@@ -375,6 +375,9 @@ bool DocumentChecker::hasErrorInClips()
for
(
int
i
=
0
;
i
<
max
;
++
i
)
{
QDomElement
transition
=
effs
.
at
(
i
).
toElement
();
QString
service
=
getProperty
(
transition
,
QStringLiteral
(
"kdenlive_id"
));
if
(
service
.
isEmpty
())
{
service
=
getProperty
(
transition
,
QStringLiteral
(
"mlt_service"
));
}
filters
<<
service
;
}
QStringList
processed
;
...
...
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