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:
authorCampbell Barton <ideasman42@gmail.com>2009-08-12 09:20:16 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-08-12 09:20:16 +0400
commit23e057185370f1aaccf13f86062f3622d25e950a (patch)
tree902cfbc0ec43aae4e1571fe80e028090f0ccb06c /release
parentc77e556b23e8df10a829bdeebe86d718bd5e5ca6 (diff)
added time units, currently only used when metric or imperial are enabled.
long/short units... day,d, hour,hr,h, minute,min,m, second,sec,s, millisecond,ms, microsecond,us Also may fix some bugs that were reported. Note, to convert fps to time evil_C needs to be used to get the scene.
Diffstat (limited to 'release')
-rw-r--r--release/ui/space_info.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/ui/space_info.py b/release/ui/space_info.py
index 9ebbc68c219..fde443f50f6 100644
--- a/release/ui/space_info.py
+++ b/release/ui/space_info.py
@@ -325,10 +325,10 @@ class INFO_PT_edit(bpy.types.Panel):
sub1.itemS()
sub1.itemL(text="Units:")
- sub1.itemR(edit, "unit_type")
+ sub1.itemR(edit, "unit_system")
sub2 = sub1.column()
- sub2.active = (edit.unit_type != 'NONE')
+ sub2.active = (edit.unit_system != 'NONE')
sub2.itemR(edit, "unit_scale_length")
sub2.itemR(edit, "use_unit_split")