From 5aef2f1ae2aaa1f8b45b473e4b403a548855b9be Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 2 May 2011 08:56:53 +0000 Subject: [PATCH] Fix #27243: missing seed button for halo materials. --- release/scripts/startup/bl_ui/properties_material.py | 1 + 1 file changed, 1 insertion(+) diff --git a/release/scripts/startup/bl_ui/properties_material.py b/release/scripts/startup/bl_ui/properties_material.py index 0443a351afa..52d6b5f1376 100644 --- a/release/scripts/startup/bl_ui/properties_material.py +++ b/release/scripts/startup/bl_ui/properties_material.py @@ -549,6 +549,7 @@ class MATERIAL_PT_halo(MaterialButtonsPanel, bpy.types.Panel): col = split.column() col.prop(mat, "alpha") col.prop(mat, "diffuse_color", text="") + col.prop(halo, "seed") col = split.column() col.prop(halo, "size")