Skip to content
GitLab
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
d9512b9a
Commit
d9512b9a
authored
Aug 24, 2022
by
Julius Künzel
💬
Browse files
[Qt6] Fix amiguous conversion
parent
18930385
Pipeline
#222143
passed with stage
in 8 minutes and 29 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
src/dialogs/clipcreationdialog.cpp
View file @
d9512b9a
...
...
@@ -300,7 +300,7 @@ void ClipCreationDialog::createQTextClip(KdenliveDoc *doc, const QString &parent
int
currentLength
=
clip
->
getProducerDuration
();
if
(
currentLength
!=
duration
->
getValue
())
{
properties
.
insert
(
QStringLiteral
(
"kdenlive:duration"
),
clip
->
framesToTime
(
duration
->
getValue
()));
properties
.
insert
(
QStringLiteral
(
"length"
),
QString
(
duration
->
getValue
()));
properties
.
insert
(
QStringLiteral
(
"length"
),
QString
::
number
(
duration
->
getValue
()));
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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