From 060daea8263f95dab471c59fbeb629dac47aa761 Mon Sep 17 00:00:00 2001 From: Salia Nifo Date: Mon, 11 Nov 2024 10:10:47 -0500 Subject: [PATCH] Fix pasting events not loading custom defaults --- .../TimelineEditor/VisualEditor/timeline_editor_visual.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/dialogic/Editor/TimelineEditor/VisualEditor/timeline_editor_visual.gd b/addons/dialogic/Editor/TimelineEditor/VisualEditor/timeline_editor_visual.gd index dce50fa55..7a576eb4c 100644 --- a/addons/dialogic/Editor/TimelineEditor/VisualEditor/timeline_editor_visual.gd +++ b/addons/dialogic/Editor/TimelineEditor/VisualEditor/timeline_editor_visual.gd @@ -471,7 +471,7 @@ func add_events_indexed(indexed_events:Dictionary) -> void: event_resource = i.duplicate() break - event_resource.from_text(indexed_events[event_idx]) + event_resource._load_from_string(indexed_events[event_idx]) # now create the visual block. deselect_all_items()