Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_image.py
| Show First 20 Lines • Show All 233 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| if ima: | if ima: | ||||
| layout.operator("image.save", text="Save", icon='FILE_TICK') | layout.operator("image.save", text="Save", icon='FILE_TICK') | ||||
| layout.operator("image.save_as", text="Save As...") | layout.operator("image.save_as", text="Save As...") | ||||
| layout.operator("image.save_as", text="Save a Copy...").copy = True | layout.operator("image.save_as", text="Save a Copy...").copy = True | ||||
| if ima and ima.source == 'SEQUENCE': | if ima and ima.source == 'SEQUENCE': | ||||
| layout.operator("image.save_sequence") | layout.operator("image.save_sequence") | ||||
| layout.operator("image.save_dirty", text="Save All Images") | layout.operator("image.save_all_modified", text="Save All Images") | ||||
| if ima: | if ima: | ||||
| layout.separator() | layout.separator() | ||||
| layout.menu("IMAGE_MT_image_invert") | layout.menu("IMAGE_MT_image_invert") | ||||
| if not show_render: | if not show_render: | ||||
| layout.separator() | layout.separator() | ||||
| ▲ Show 20 Lines • Show All 1,420 Lines • Show Last 20 Lines | |||||