From 8927bc5dff52c376284b87c684a8835ac51808de Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Thu, 9 Feb 2017 14:34:08 +0100 Subject: Swap order of selectability/visibility toggles Just to be consistent with outliner. --- source/blender/editors/space_collections/collections_edit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source') diff --git a/source/blender/editors/space_collections/collections_edit.c b/source/blender/editors/space_collections/collections_edit.c index e7bdd4c2ae6..69d29ffb373 100644 --- a/source/blender/editors/space_collections/collections_edit.c +++ b/source/blender/editors/space_collections/collections_edit.c @@ -42,10 +42,10 @@ void collections_table_create(SceneLayer *layer, uiTable **r_table) uiTableColumn *col; UI_table_column_add(table, "name", "Collection", collections_draw_cell); - col = UI_table_column_add(table, "visibility", "Visible", collections_draw_cell_visibility); - UI_table_column_width_set(col, UI_UNIT_X, TABLE_UNIT_PX, UI_UNIT_X); col = UI_table_column_add(table, "selectability", "Selectable", collections_draw_cell_selectability); UI_table_column_width_set(col, UI_UNIT_X, TABLE_UNIT_PX, UI_UNIT_X); + col = UI_table_column_add(table, "visibility", "Visible", collections_draw_cell_visibility); + UI_table_column_width_set(col, UI_UNIT_X, TABLE_UNIT_PX, UI_UNIT_X); for (LayerCollection *collection = layer->layer_collections.first; collection; collection = collection->next) { UI_table_row_add(table, collection); -- cgit v1.2.3