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
eef8f05a
Commit
eef8f05a
authored
Mar 26, 2022
by
Jean-Baptiste Mardelle
Browse files
Fix creating guides from project notes
parent
154812c8
Pipeline
#155193
passed with stage
in 7 minutes and 7 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/project/dialogs/noteswidget.cpp
View file @
eef8f05a
...
@@ -75,7 +75,11 @@ void NotesWidget::createMarker(const QStringList &anchors)
...
@@ -75,7 +75,11 @@ void NotesWidget::createMarker(const QStringList &anchors)
clipMarkers
.
insert
(
binId
,
timecodes
);
clipMarkers
.
insert
(
binId
,
timecodes
);
}
else
{
}
else
{
// That is a guide
// That is a guide
guides
<<
anchor
.
toInt
();
if
(
anchor
.
contains
(
QLatin1Char
(
'?'
)))
{
guides
<<
anchor
.
section
(
QLatin1Char
(
'?'
),
0
,
0
).
toInt
();
}
else
{
guides
<<
anchor
.
toInt
();
}
}
}
}
}
QMapIterator
<
QString
,
QList
<
int
>>
i
(
clipMarkers
);
QMapIterator
<
QString
,
QList
<
int
>>
i
(
clipMarkers
);
...
...
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