Skip to content

Commit

Permalink
Fix Position Scale GUI editor num input
Browse files Browse the repository at this point in the history
  • Loading branch information
jliljebl committed Jan 17, 2020
1 parent 13d3073 commit 6a18025
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions flowblade-trunk/Flowblade/keyframeeditor.py
Expand Up @@ -1615,6 +1615,14 @@ def geometry_edit_finished(self): # callback from geom_kf_edit
self.buttons_row.set_kf_info(self.clip_editor.get_kf_info())
self.pos_entries_row.update_entry_values(self.geom_kf_edit.get_keyframe(self.clip_editor.active_kf_index))

def numerical_edit_done(self, new_shape):
# Callback from PositionNumericalEntries
self.geom_kf_edit.set_keyframe_to_edit_shape(self.clip_editor.active_kf_index, new_shape)
self.update_editor_view_with_frame(self.clip_editor.current_clip_frame)
self.update_property_value()
self.buttons_row.set_kf_info(self.clip_editor.get_kf_info())
self.pos_entries_row.update_entry_values(self.geom_kf_edit.get_keyframe(self.clip_editor.active_kf_index))

def update_request_from_geom_editor(self): # callback from geom_kf_edit
self.update_editor_view_with_frame(self.clip_editor.current_clip_frame)
self.pos_entries_row.update_entry_values(self.geom_kf_edit.get_keyframe(self.clip_editor.active_kf_index))
Expand Down

0 comments on commit 6a18025

Please sign in to comment.