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:
authorAntony Riakiotakis <kalast@gmail.com>2015-02-12 21:59:34 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-02-12 21:59:34 +0300
commit8de421bbf1c2ec9ac8156337d4df35d3d8019180 (patch)
treece2d9b1f5374035b94cc71aedce232657e4e9a22 /intern/cycles/blender
parentd0a91eb1b400607e0b4cb912b2a3020870ebdae3 (diff)
Use the RNA for overriding the name instead.
Diffstat (limited to 'intern/cycles/blender')
-rw-r--r--intern/cycles/blender/addon/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index af0cbc71de7..63518d7fdb6 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -456,7 +456,7 @@ class CyclesCamera_PT_dof(CyclesButtonsPanel, Panel):
sub = col.row()
sub.active = cam.dof_object is None
sub.prop(cam, "dof_distance", text="Distance")
- col.prop(dof_options, "fstop", text="Viewport f-stop")
+ col.prop(dof_options, "fstop")
col = split.column()