Cycles UI Tweak:

* Don't disable Progressive option, just grey out.
This commit is contained in:
Thomas Dinges
2012-09-29 23:45:35 +00:00
parent 9fccfd313c
commit b012c3cf46

View File

@@ -59,7 +59,7 @@ class CyclesRender_PT_sampling(CyclesButtonsPanel, Panel):
col = split.column() col = split.column()
sub = col.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.prop(cscene, "progressive")
sub = col.column(align=True) sub = col.column(align=True)