From 6ea6df0e26aa549b1089fcab81f20e985f811711 Mon Sep 17 00:00:00 2001 From: Emmanouil Papadeas Date: Mon, 11 Mar 2024 19:19:27 +0200 Subject: [PATCH] Fix size label not being updated on the Export dialog's spritesheet tab when the direction changes --- src/UI/Dialogs/ExportDialog.gd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/UI/Dialogs/ExportDialog.gd b/src/UI/Dialogs/ExportDialog.gd index f793ecf47..5c8ad3496 100644 --- a/src/UI/Dialogs/ExportDialog.gd +++ b/src/UI/Dialogs/ExportDialog.gd @@ -336,6 +336,7 @@ func _on_Direction_item_selected(id: Export.AnimationDirection) -> void: preview_current_frame = 0 Export.process_data() set_preview() + update_dimensions_label() func _on_Resize_value_changed(value: float) -> void: @@ -420,7 +421,8 @@ func _on_ExportDialog_popup_hide() -> void: func _on_split_layers_toggled(toggled_on: bool) -> void: Export.split_layers = toggled_on - show_tab() + Export.process_data() + set_preview() func _on_IncludeTagsInFilename_toggled(button_pressed: bool) -> void: