Changeset View
Changeset View
Standalone View
Standalone View
io_scene_ms3d/ms3d_ui.py
| Context not available. | |||||
| index = custom_data.selected_group_index | index = custom_data.selected_group_index | ||||
| collection = custom_data.groups | collection = custom_data.groups | ||||
| if (index >= 0 and index < len(collection)): | if 0 <= index < len(collection): | ||||
| row = layout.row() | row = layout.row() | ||||
| subrow = row.row(align=True) | subrow = row.row(align=True) | ||||
| subrow.operator( | subrow.operator( | ||||
| Context not available. | |||||