1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-02 16:48:55 +00:00

Fix drag and drop @export variable assignment when script has errors

This commit is contained in:
fkeyz
2025-09-22 01:01:11 +03:00
parent 6fd949a6dc
commit 0dfa815985
2 changed files with 36 additions and 10 deletions

View File

@@ -186,6 +186,7 @@ class ScriptTextEditor : public ScriptEditorBase {
ObjectID obj_id;
String variable_name;
Variant value;
String class_name;
};
LocalVector<DraggedExport> pending_dragged_exports;