Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_clip.py
| Show First 20 Lines • Show All 1,076 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| row.prop(clip.proxy, "build_undistorted_75", toggle=True) | row.prop(clip.proxy, "build_undistorted_75", toggle=True) | ||||
| row.prop(clip.proxy, "build_undistorted_100", toggle=True) | row.prop(clip.proxy, "build_undistorted_100", toggle=True) | ||||
| layout.use_property_split = True | layout.use_property_split = True | ||||
| layout.use_property_decorate = False | layout.use_property_decorate = False | ||||
| col = layout.column() | col = layout.column() | ||||
| col.prop(clip.proxy, "quality") | col.prop(clip.proxy, "quality") | ||||
| col.prop(clip, "use_proxy_custom_directory") | col.prop(clip.proxy, "use_proxy_custom_directory") | ||||
| if clip.use_proxy_custom_directory: | if clip.proxy.use_proxy_custom_directory: | ||||
| col.prop(clip.proxy, "directory") | col.prop(clip.proxy, "directory") | ||||
| col.operator( | col.operator( | ||||
| "clip.rebuild_proxy", | "clip.rebuild_proxy", | ||||
| text="Build Proxy / Timecode" if clip.source == 'MOVIE' | text="Build Proxy / Timecode" if clip.source == 'MOVIE' | ||||
| else "Build Proxy" | else "Build Proxy" | ||||
| ) | ) | ||||
| ▲ Show 20 Lines • Show All 714 Lines • Show Last 20 Lines | |||||