Skip to content

Commit 769342e

Browse files
committed
Fix reference error
1 parent 505b034 commit 769342e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Editor/UDictionaryDrawer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ protected void InitializeList(SerializedProperty prop)
125125
}
126126
}
127127

128-
protected virtual ReorderableList CreateList(SerializedObject serializedObj, SerializedProperty elements) =>
128+
protected virtual ReorderableList CreateList(SerializedObject serializedObj, SerializedProperty elements) =>
129129
new ReorderableList(serializedObj, elements, !isReadOnly, true, !isReadOnly, !isReadOnly) {
130130
drawHeaderCallback = DrawHeader,
131131
onAddCallback = OnAdd,

Editor/Unity.SerializedDictionary.Editor.asmdef

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Unity.SerializedDictionary.Editor",
33
"references": [
4-
"GUID:bd6a1acfe4f1fdc4db1bfa6a63426a3e"
4+
"Unity.SerializedDictionary"
55
],
66
"includePlatforms": [],
77
"excludePlatforms": [],

0 commit comments

Comments
 (0)