diff --git a/release/scripts/startup/bl_ui/space_logic.py b/release/scripts/startup/bl_ui/space_logic.py index 9e07746b9c7..1d0e2221ce2 100644 --- a/release/scripts/startup/bl_ui/space_logic.py +++ b/release/scripts/startup/bl_ui/space_logic.py @@ -51,10 +51,7 @@ class LOGIC_PT_properties(Panel): # get the property from the body, not the game property # note, dont do this - its too slow and body can potentually be a really long string. # row.prop(ob.data, "body", text="") - if prop.type == 'STRING': - row.label("*See Font Object*") - else: - row.prop(prop, "value", text="", toggle=True) + row.label("See Font Object") else: props = layout.operator("object.game_property_new", text="Add Text Game Property", icon='ZOOMIN') props.name = 'Text'