Cleanup: Make format

This commit is contained in:
Jeroen Bakker 2023-11-03 12:00:38 +01:00
parent 60df70b082
commit 747ec05f69
2 changed files with 3 additions and 4 deletions

View File

@ -111,11 +111,11 @@ class DATA_PT_lightprobe_eevee_next(DataButtonsPanel, Panel):
col.operator("object.lightprobe_cache_free").subset = 'ACTIVE'
col.separator()
row = col.row(align=True)
row.prop(probe, "data_display_size", text="Display Data")
row.prop(probe, "use_data_display", text="", toggle=True)
col.separator()
col.prop(probe, "grid_bake_samples")

View File

@ -1422,8 +1422,7 @@ static ImBuf *ffmpeg_fetchibuf(anim *anim, int position, IMB_Timecode_Type tc)
MEM_mallocN_aligned(size_t(4) * anim->x * anim->y, 32, "ffmpeg ibuf"));
IMB_assign_byte_buffer(cur_frame_final, buffer_data, IB_TAKE_OWNERSHIP);
cur_frame_final->byte_buffer.colorspace = colormanage_colorspace_get_named(
anim->colorspace);
cur_frame_final->byte_buffer.colorspace = colormanage_colorspace_get_named(anim->colorspace);
AVFrame *final_frame = ffmpeg_frame_by_pts_get(anim, pts_to_search);
if (final_frame == nullptr) {