mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-03-13 06:45:17 +00:00
Fix size label not being updated on the Export dialog's spritesheet tab when the direction changes
This commit is contained in:
parent
3fb2877b73
commit
6ea6df0e26
1 changed files with 3 additions and 1 deletions
|
@ -336,6 +336,7 @@ func _on_Direction_item_selected(id: Export.AnimationDirection) -> void:
|
||||||
preview_current_frame = 0
|
preview_current_frame = 0
|
||||||
Export.process_data()
|
Export.process_data()
|
||||||
set_preview()
|
set_preview()
|
||||||
|
update_dimensions_label()
|
||||||
|
|
||||||
|
|
||||||
func _on_Resize_value_changed(value: float) -> void:
|
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:
|
func _on_split_layers_toggled(toggled_on: bool) -> void:
|
||||||
Export.split_layers = toggled_on
|
Export.split_layers = toggled_on
|
||||||
show_tab()
|
Export.process_data()
|
||||||
|
set_preview()
|
||||||
|
|
||||||
|
|
||||||
func _on_IncludeTagsInFilename_toggled(button_pressed: bool) -> void:
|
func _on_IncludeTagsInFilename_toggled(button_pressed: bool) -> void:
|
||||||
|
|
Loading…
Add table
Reference in a new issue