X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmarkerdialog.cpp;h=3402fb2b5fe3140a2a536295431297bf75036345;hb=8ddbcd4eb887ff2859c5420264a803a986cea14a;hp=5846662f56104bf8e62765a4779d4659516032a3;hpb=664bf2e8e880714395658a254171b7d5b9ab264b;p=kdenlive diff --git a/src/markerdialog.cpp b/src/markerdialog.cpp index 5846662f..3402fb2b 100644 --- a/src/markerdialog.cpp +++ b/src/markerdialog.cpp @@ -93,7 +93,7 @@ MarkerDialog::MarkerDialog(DocClipBase *clip, CommentedTime t, Timecode tc, cons clip_thumb->setFixedHeight(p.height()); clip_thumb->setPixmap(p); } - connect(m_in, SIGNAL(editingFinished()), this, SIGNAL(updateThumb())); + connect(m_in, SIGNAL(timeCodeEditingFinished()), this, SIGNAL(updateThumb())); } else { clip_thumb->setHidden(true); } @@ -128,6 +128,7 @@ void MarkerDialog::slotUpdateThumb() CommentedTime MarkerDialog::newMarker() { + KdenliveSettings::setDefault_marker_type(marker_type->currentIndex()); return CommentedTime(m_in->gentime(), marker_comment->text(), marker_type->currentIndex()); }