From a4c0d644c9f55c39955e43bdccbf523064c0add4 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Thu, 6 Jan 2011 09:55:20 +0000 Subject: [PATCH] Bugfix #25505 Mesh properties: Auto Texture space option missing --- release/scripts/ui/properties_data_mesh.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/release/scripts/ui/properties_data_mesh.py b/release/scripts/ui/properties_data_mesh.py index ecaafa3c66c..076da222f79 100644 --- a/release/scripts/ui/properties_data_mesh.py +++ b/release/scripts/ui/properties_data_mesh.py @@ -108,6 +108,8 @@ class DATA_PT_settings(MeshButtonsPanel, bpy.types.Panel): mesh = context.mesh layout.prop(mesh, "texture_mesh") + layout.prop(mesh, "use_auto_texspace") + class DATA_PT_vertex_groups(MeshButtonsPanel, bpy.types.Panel):