Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2009-07-10 23:11:22 +0400
committerThomas Dinges <blender@dingto.org>2009-07-10 23:11:22 +0400
commita74edc0caf2380bd92aa812835a1b5f922f2ca56 (patch)
treef606a237a45de81ce9da9f42dd450636200da223 /release
parentc7e308367a6d1ed7db914e35d0660b6afa44456d (diff)
2.5 Buttons:
Small fixes: * Removed Particle System Context header * Lamp Type is a menu now, better for small displays.
Diffstat (limited to 'release')
-rw-r--r--release/ui/buttons_data_lamp.py2
-rw-r--r--release/ui/buttons_particle.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/release/ui/buttons_data_lamp.py b/release/ui/buttons_data_lamp.py
index e56f19b1dec..cf0ede8ec3b 100644
--- a/release/ui/buttons_data_lamp.py
+++ b/release/ui/buttons_data_lamp.py
@@ -48,7 +48,7 @@ class DATA_PT_lamp(DataButtonsPanel):
lamp = context.lamp
- layout.itemR(lamp, "type", expand=True)
+ layout.itemR(lamp, "type")
split = layout.split()
diff --git a/release/ui/buttons_particle.py b/release/ui/buttons_particle.py
index 652f46d9675..ef7ede15d6e 100644
--- a/release/ui/buttons_particle.py
+++ b/release/ui/buttons_particle.py
@@ -20,7 +20,7 @@ class ParticleButtonsPanel(bpy.types.Panel):
class PARTICLE_PT_particles(ParticleButtonsPanel):
__idname__= "PARTICLE_PT_particles"
- __label__ = " "
+ __no_header__ = True
def poll(self, context):
return (context.particle_system or context.object)