diff --git a/src/UI/Timeline/TagProperties.gd b/src/UI/Timeline/TagProperties.gd index e0604bd8d..f8b7e30b1 100644 --- a/src/UI/Timeline/TagProperties.gd +++ b/src/UI/Timeline/TagProperties.gd @@ -93,3 +93,7 @@ func _on_custom_action(action: StringName) -> void: Global.current_project.undo_redo.commit_action() hide() + + +func _on_visibility_changed() -> void: + Global.dialog_open(visible) diff --git a/src/UI/Timeline/TagProperties.tscn b/src/UI/Timeline/TagProperties.tscn index 1668f6430..70668436a 100644 --- a/src/UI/Timeline/TagProperties.tscn +++ b/src/UI/Timeline/TagProperties.tscn @@ -77,3 +77,4 @@ scroll_fit_content_height = true [connection signal="confirmed" from="." to="." method="_on_confirmed"] [connection signal="custom_action" from="." to="." method="_on_custom_action"] +[connection signal="visibility_changed" from="." to="." method="_on_visibility_changed"]