Cleanup: comment for release configuration, quote-style & remove parens

This commit is contained in:
Campbell Barton
2023-10-11 10:39:35 +11:00
parent b0515e34f9
commit 58442a420e
3 changed files with 5 additions and 2 deletions
@@ -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)
+1 -1
View File
@@ -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;