From ba59c31d63790e3ce46fbd54a5d30059ab38e282 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Mardelle Date: Thu, 12 Nov 2009 21:37:44 +0000 Subject: [PATCH] Fix slideshow luma disabled when editing svn path=/trunk/kdenlive/; revision=4107 --- src/clipproperties.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/clipproperties.cpp b/src/clipproperties.cpp index c8bbf7ba..6b8f6d3e 100644 --- a/src/clipproperties.cpp +++ b/src/clipproperties.cpp @@ -204,13 +204,12 @@ ClipProperties::ClipProperties(DocClipBase *clip, Timecode tc, double fps, QWidg m_view.luma_file->addItem(KIcon(filePath), fname, filePath); } - slotEnableLuma(m_view.slide_fade->checkState()); - slotEnableLumaFile(m_view.slide_luma->checkState()); - if (!lumaFile.isEmpty()) { m_view.slide_luma->setChecked(true); m_view.luma_file->setCurrentIndex(m_view.luma_file->findData(lumaFile)); } else m_view.luma_file->setEnabled(false); + slotEnableLuma(m_view.slide_fade->checkState()); + slotEnableLumaFile(m_view.slide_luma->checkState()); connect(m_view.slide_fade, SIGNAL(stateChanged(int)), this, SLOT(slotEnableLuma(int))); connect(m_view.slide_luma, SIGNAL(stateChanged(int)), this, SLOT(slotEnableLumaFile(int))); -- 2.39.2