decoupled ui from effect row

This commit is contained in:
itsmattkc
2019-03-12 20:12:12 +11:00
parent 170fe9bd01
commit 0b090ddc21
45 changed files with 416 additions and 432 deletions
+5 -5
View File
@@ -1136,17 +1136,17 @@ void KeyframeFieldSet::doRedo() {
done = true;
}
SetKeyframing::SetKeyframing(EffectRow *irow, bool ib) {
SetIsKeyframing::SetIsKeyframing(EffectRow *irow, bool ib) {
row = irow;
b = ib;
}
void SetKeyframing::doUndo() {
row->setKeyframing(!b);
void SetIsKeyframing::doUndo() {
row->SetKeyframing(!b);
}
void SetKeyframing::doRedo() {
row->setKeyframing(b);
void SetIsKeyframing::doRedo() {
row->SetKeyframing(b);
}
RefreshClips::RefreshClips(Media *m) {