X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmainwindow.cpp;h=1dbdef51b7b2dbb1c34999cebaee6bc309a4683e;hb=574472e8c2d42cc2828750920c9171ef7cc9c992;hp=1b4cb3973ab5bef3203f646293195c2292bfca3a;hpb=556f9a6d797f471c36b0fb5517ecf156ddce59bb;p=kdenlive diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 1b4cb397..1dbdef51 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -2093,6 +2093,7 @@ void MainWindow::connectDocument(TrackView *trackView, KdenliveDoc *doc) //cha connect(m_effectStack, SIGNAL(updateClipEffect(ClipItem*, QDomElement, QDomElement, int)), trackView->projectView(), SLOT(slotUpdateClipEffect(ClipItem*, QDomElement, QDomElement, int))); + connect(m_effectStack, SIGNAL(updateClipRegion(ClipItem*, int, QString)), trackView->projectView(), SLOT(slotUpdateClipRegion(ClipItem*, int, QString))); connect(m_effectStack, SIGNAL(removeEffect(ClipItem*, QDomElement)), trackView->projectView(), SLOT(slotDeleteEffect(ClipItem*, QDomElement))); connect(m_effectStack, SIGNAL(changeEffectState(ClipItem*, int, bool)), trackView->projectView(), SLOT(slotChangeEffectState(ClipItem*, int, bool))); connect(m_effectStack, SIGNAL(changeEffectPosition(ClipItem*, int, int)), trackView->projectView(), SLOT(slotChangeEffectPosition(ClipItem*, int, int))); @@ -2156,7 +2157,7 @@ void MainWindow::slotEditKeys() KShortcutsDialog dialog(KShortcutsEditor::AllActions, KShortcutsEditor::LetterShortcutsAllowed, this); dialog.addCollection(actionCollection(), i18nc("general keyboard shortcuts", "General")); dialog.addCollection(m_effectsActionCollection, i18nc("effects and transitions keyboard shortcuts", "Effects & Transitions")); - dialog.configure(); + dialog.configure(); } void MainWindow::slotPreferences(int page, int option) @@ -3431,7 +3432,8 @@ void MainWindow::slotChangePalette(QAction *action, const QString &themename) ((QWidget*)subchild)->setPalette(plt); } } - if (m_activeTimeline) m_activeTimeline->projectView()->updatePalette(); + if (m_activeTimeline) + m_activeTimeline->projectView()->updatePalette(); }