1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-18 17:19:50 +00:00

Call Global.dialog_open() on the tag properties popup

This commit is contained in:
Emmanouil Papadeas 2024-07-23 22:27:29 +03:00
parent 30dfb6aa58
commit 96a1d2770d
2 changed files with 5 additions and 0 deletions

View file

@ -93,3 +93,7 @@ func _on_custom_action(action: StringName) -> void:
Global.current_project.undo_redo.commit_action() Global.current_project.undo_redo.commit_action()
hide() hide()
func _on_visibility_changed() -> void:
Global.dialog_open(visible)

View file

@ -77,3 +77,4 @@ scroll_fit_content_height = true
[connection signal="confirmed" from="." to="." method="_on_confirmed"] [connection signal="confirmed" from="." to="." method="_on_confirmed"]
[connection signal="custom_action" from="." to="." method="_on_custom_action"] [connection signal="custom_action" from="." to="." method="_on_custom_action"]
[connection signal="visibility_changed" from="." to="." method="_on_visibility_changed"]