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:
authorWilliam Reynish <william@reynish.com>2009-08-16 19:45:27 +0400
committerWilliam Reynish <william@reynish.com>2009-08-16 19:45:27 +0400
commit0e06b0bdf109ab69d406a72654c37b0f6ce377e6 (patch)
treec6d41e97c9cc89f7ca56074e7772f856c59d88d8 /release
parent53f451928e263c2033a660caf513b990bce1b96c (diff)
tweaked units layout
Diffstat (limited to 'release')
-rw-r--r--release/ui/buttons_scene.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/release/ui/buttons_scene.py b/release/ui/buttons_scene.py
index 514524ceea5..12200eb26ca 100644
--- a/release/ui/buttons_scene.py
+++ b/release/ui/buttons_scene.py
@@ -439,12 +439,12 @@ class SCENE_PT_unit(RenderButtonsPanel):
unit = context.scene.unit_settings
col = layout.column()
- col.itemR(unit, "system")
+ col.row().itemR(unit, "system", expand=True)
- col = layout.column()
- col.active = (unit.system != 'NONE')
- col.itemR(unit, "scale_length")
- col.itemR(unit, "use_separate")
+ row = layout.row()
+ row.active = (unit.system != 'NONE')
+ row.itemR(unit, "scale_length", text="Scale")
+ row.itemR(unit, "use_separate")
bpy.types.register(SCENE_PT_render)