X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmainwindow.cpp;h=5f9e06618872c47faf56ea3e784c4772c0ee4c66;hb=0ecaca991853809ccb21f4232a7edfee3e660237;hp=9d6e64d0860d52981d47e3e480911d31d8a388dd;hpb=664bf2e8e880714395658a254171b7d5b9ab264b;p=kdenlive diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 9d6e64d0..5f9e0661 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -2835,7 +2835,7 @@ void MainWindow::slotAddClipMarker() return; } QString id = clip->getId(); - CommentedTime marker(pos, i18n("Marker")); + CommentedTime marker(pos, i18n("Marker"), KdenliveSettings::default_marker_type()); QPointer d = new MarkerDialog(clip, marker, m_activeDocument->timecode(), i18n("Add Marker"), this); if (d->exec() == QDialog::Accepted) @@ -2948,7 +2948,7 @@ void MainWindow::slotAddMarkerGuideQuickly() return; } //TODO: allow user to set default marker category - CommentedTime marker(pos, m_activeDocument->timecode().getDisplayTimecode(pos, false)); + CommentedTime marker(pos, m_activeDocument->timecode().getDisplayTimecode(pos, false), KdenliveSettings::default_marker_type()); m_activeTimeline->projectView()->slotAddClipMarker(clip->getId(), marker); } else { m_activeTimeline->projectView()->slotAddGuide(false);