created sequence clip selection convenience function

This commit is contained in:
itsmattkc
2019-02-28 03:45:17 -08:00
parent c513276a1b
commit 70be7fa097
9 changed files with 154 additions and 134 deletions
+7
View File
@@ -689,6 +689,13 @@ void EffectFieldUndo::doRedo() {
SetClipProperty::SetClipProperty(SetClipPropertyType type) : type_(type)
{}
void SetClipProperty::AddSetting(QVector<Clip *> clips, bool setting)
{
for (int i=0;i<clips.size();i++) {
AddSetting(clips.at(i), setting);
}
}
void SetClipProperty::AddSetting(Clip* c, bool setting)
{
clips_.append(c);