|
|
@@ -344,8 +344,9 @@ def interface_draw(self, context, layout):
|
|
|
layout.prop(self, "is_array", text="Is Array", toggle=True,)
|
|
|
if not self.is_array and self.id_data.bl_idname == 'SchemaTree':
|
|
|
layout.prop(self, "is_connection", text="Is Connection", toggle=True,)
|
|
|
- if self.is_connection: # only show this if in a Schema AND set to is_connection
|
|
|
- layout.prop(self, "connected_to", text="Connected To", toggle=True,)
|
|
|
+ if False: # DISABLED for now because it will take a big change to Schema to make this work.
|
|
|
+ if self.is_connection: # only show this if in a Schema AND set to is_connection
|
|
|
+ layout.prop(self, "connected_to", text="Connected To", toggle=True,)
|
|
|
|
|
|
# Different classes to handle different data types. In the future, these should also
|
|
|
# have settable min/max and such where appropriate
|