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
path: root/intern
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2012-09-30 03:45:35 +0400
committerThomas Dinges <blender@dingto.org>2012-09-30 03:45:35 +0400
commitb012c3cf46eef19cabc44dfaaa3b9bdb6538a838 (patch)
treef8b96aab52c349de0e9b5df3aa21e7be13f11963 /intern
parent9fccfd313cd52618fed6bca0148154f75431e3c0 (diff)
Cycles UI Tweak:
* Don't disable Progressive option, just grey out.
Diffstat (limited to 'intern')
-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 de256796171..8d39b09ab0e 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -59,7 +59,7 @@ class CyclesRender_PT_sampling(CyclesButtonsPanel, Panel):
col = split.column()
sub = col.column()
- sub.enabled = (device_type == 'NONE' or cscene.device == 'CPU')
+ sub.active = (device_type == 'NONE' or cscene.device == 'CPU')
sub.prop(cscene, "progressive")
sub = col.column(align=True)