Prevent error when current file is outside Flamenco project path
This commit is contained in:
parent
3f95249196
commit
4608204f1d
@ -445,6 +445,9 @@ class FLAMENCO_PT_render(bpy.types.Panel):
|
||||
labeled_row.label('Output:')
|
||||
prop_btn_row = labeled_row.row(align=True)
|
||||
render_output = render_output_path(context)
|
||||
if render_output is None:
|
||||
prop_btn_row.label('Unable to render with Flamenco, outside of project directory.')
|
||||
else:
|
||||
prop_btn_row.label(str(render_output))
|
||||
props = prop_btn_row.operator(FLAMENCO_OT_explore_file_path.bl_idname,
|
||||
text='', icon='DISK_DRIVE')
|
||||
|
Reference in New Issue
Block a user