Cleanup: comment for release configuration, quote-style & remove parens
This commit is contained in:
@@ -7,6 +7,9 @@
|
||||
# Example usage:
|
||||
# cmake -C../blender/build_files/cmake/config/blender_release.cmake ../blender
|
||||
#
|
||||
# NOTE: the built-bot supports configuration overrides for some of these settings.
|
||||
# This means the daily-builds may not match this configuration *exactly*,
|
||||
# see: `build_files/buildbot/config/*.cmake`.
|
||||
|
||||
set(WITH_ALEMBIC ON CACHE BOOL "" FORCE)
|
||||
set(WITH_ASSERT_ABORT OFF CACHE BOOL "" FORCE)
|
||||
|
||||
@@ -892,7 +892,7 @@ class CYCLES_RENDER_PT_filter(CyclesButtonsPanel, Panel):
|
||||
sub.prop(view_layer, "use_motion_blur", text="Motion Blur")
|
||||
sub.active = rd.use_motion_blur
|
||||
sub = col.row()
|
||||
sub.prop(view_layer.cycles, 'use_denoising', text='Denoising')
|
||||
sub.prop(view_layer.cycles, "use_denoising", text="Denoising")
|
||||
sub.active = scene.cycles.use_denoising
|
||||
|
||||
|
||||
|
||||
@@ -218,7 +218,7 @@ SeqRetimingKey *SEQ_retiming_transition_start_get(SeqRetimingKey *key)
|
||||
if ((key->flag & SEQ_SPEED_TRANSITION_OUT)) {
|
||||
return key - 1;
|
||||
}
|
||||
if ((key->flag & SEQ_SPEED_TRANSITION_IN)) {
|
||||
if (key->flag & SEQ_SPEED_TRANSITION_IN) {
|
||||
return key;
|
||||
}
|
||||
return nullptr;
|
||||
|
||||
Reference in New Issue
Block a user