fixed #143 regression

This commit is contained in:
itsmattkc
2019-01-18 15:09:17 +11:00
parent b2ff4db398
commit 2ed9d6ba2e
3 changed files with 7 additions and 7 deletions
+4 -2
View File
@@ -580,7 +580,8 @@ void Effect::move_up() {
command->from = get_index_in_clip();
command->to = command->from - 1;
undo_stack.push(command);
update_ui(true);
panel_effect_controls->reload_clips();
panel_sequence_viewer->viewer_widget->frame_update();
}
void Effect::move_down() {
@@ -589,7 +590,8 @@ void Effect::move_down() {
command->from = get_index_in_clip();
command->to = command->from + 1;
undo_stack.push(command);
update_ui(true);
panel_effect_controls->reload_clips();
panel_sequence_viewer->viewer_widget->frame_update();
}
int Effect::get_index_in_clip() {