added hsb effect and added #143

This commit is contained in:
itsmattkc
2018-10-31 20:30:31 +11:00
parent 45e41ae903
commit 78126334ba
7 changed files with 152 additions and 1 deletions
+12
View File
@@ -1712,3 +1712,15 @@ void UpdateFootageTooltip::undo() {
void UpdateFootageTooltip::redo() {
update_footage_tooltip(item, media);
}
MoveEffectCommand::MoveEffectCommand() :
old_project_changed(mainWindow->isWindowModified())
{}
void MoveEffectCommand::undo() {
clip->effects.move(to, from);
}
void MoveEffectCommand::redo() {
clip->effects.move(from, to);
}