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>2012-03-11 00:30:05 +0400
committerThomas Dinges <blender@dingto.org>2012-03-11 00:30:05 +0400
commit83a5c943af241a0db317c0886fc0f7e192f23208 (patch)
treeb29565e1a089e49411da5f2be3c602dfe2f68a04 /release/scripts/startup/bl_ui/properties_world.py
parentbb82854d46234bd986186c8f7a9779c3b8036bfb (diff)
2.6 UI:
World Context: * Made world id block wider * Don't show texture user when Cycles engine is used Other: * Change Dopesheet > DopeSheet in User Preferences Theme section for consistency.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_world.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_world.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_world.py b/release/scripts/startup/bl_ui/properties_world.py
index 23f35d6d1e9..76d70aafc2e 100644
--- a/release/scripts/startup/bl_ui/properties_world.py
+++ b/release/scripts/startup/bl_ui/properties_world.py
@@ -49,16 +49,17 @@ class WORLD_PT_context_world(WorldButtonsPanel, Panel):
scene = context.scene
world = context.world
space = context.space_data
+ rd = context.scene.render
texture_count = world and len(world.texture_slots.keys())
- split = layout.split(percentage=0.65)
+ split = layout.split(percentage=0.85)
if scene:
split.template_ID(scene, "world", new="world.new")
elif world:
split.template_ID(space, "pin_id")
- if texture_count:
+ if texture_count and rd.engine != 'CYCLES':
split.label(text=str(texture_count), icon='TEXTURE')