Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_text.py
| Context not available. | |||||
| layout.operator("text.reload") | layout.operator("text.reload") | ||||
| layout.separator() | layout.separator() | ||||
| layout.operator("text.save", icon='FILE_TICK') | # Dim the "Save" if the text is not dirty or goes to "Save As". | ||||
| sub = layout.column() | |||||
| sub.active = (text.is_dirty or text.is_modified) and not text.is_in_memory | |||||
| sub.operator("text.save", icon='FILE_TICK') | |||||
| layout.operator("text.save_as", text="Save As...") | layout.operator("text.save_as", text="Save As...") | ||||
| if text.filepath: | if text.filepath: | ||||
| Context not available. | |||||