1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-31 15:39:49 +00:00

some bug fixes

This commit is contained in:
Variable 2023-05-17 16:11:52 +05:00 committed by GitHub
parent 107363537a
commit dd23394d52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -196,6 +196,7 @@ func add_frame() -> void:
project.undo_redo.add_undo_method(project, "change_cel", project.current_frame)
project.undo_redo.commit_action()
yield(get_tree(), "idle_frame")
yield(get_tree(), "idle_frame")
adjust_scroll_container()
@ -265,6 +266,7 @@ func delete_frames(indices := []) -> void:
project.undo_redo.add_undo_method(Global, "undo_or_redo", true)
project.undo_redo.commit_action()
yield(get_tree(), "idle_frame")
yield(get_tree(), "idle_frame")
adjust_scroll_container()
@ -371,6 +373,9 @@ func copy_frames(indices := [], destination := -1) -> void:
if !Global.current_project.selected_cels.has(frame_layer):
Global.current_project.selected_cels.append(frame_layer)
Global.current_project.change_cel(range_end, -1)
yield(get_tree(), "idle_frame")
yield(get_tree(), "idle_frame")
adjust_scroll_container()
func _on_CopyTag_pressed() -> void: