Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_image.py
| Context not available. | |||||
| layout.separator() | layout.separator() | ||||
| if ima: | if ima: | ||||
| layout.operator("image.save", text="Save", icon='FILE_TICK') | # Dim the "Save" if the image is not dirty or goes to "Save As". | ||||
| sub = layout.column() | |||||
| sub.active = (ima.is_dirty or (ima.packed_file is not None)) and (ima.filepath != '') | |||||
| sub.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 | ||||
| Context not available. | |||||