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

Fix formatting

This commit is contained in:
Emmanouil Papadeas 2023-11-16 21:01:35 +02:00
parent e0bd25c374
commit 4707fd5da7

View file

@ -620,7 +620,9 @@ func convert_dictionary_values(dict: Dictionary) -> void:
dict[key] = str2var("Vector3" + dict[key])
func undo_redo_compress_images(redo_data: Dictionary, undo_data: Dictionary, project := current_project) -> void:
func undo_redo_compress_images(
redo_data: Dictionary, undo_data: Dictionary, project := current_project
) -> void:
for image in redo_data:
if not image is Image:
continue
@ -652,7 +654,6 @@ func undo_redo_draw_op(
image.data["data"] = decompressed
## Used by the Move tool for undo/redo, moves all of the Images in the images array
## by diff pixels.
func undo_redo_move(diff: Vector2, images: Array) -> void: