Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_outliner/outliner_intern.h
| Show First 20 Lines • Show All 187 Lines • ▼ Show 20 Lines | |||||
| #define OL_RNA_COLX (UI_UNIT_X * 15) | #define OL_RNA_COLX (UI_UNIT_X * 15) | ||||
| #define OL_RNA_COL_SIZEX (UI_UNIT_X * 7.5f) | #define OL_RNA_COL_SIZEX (UI_UNIT_X * 7.5f) | ||||
| #define OL_RNA_COL_SPACEX (UI_UNIT_X * 2.5f) | #define OL_RNA_COL_SPACEX (UI_UNIT_X * 2.5f) | ||||
| /* The outliner display modes that support the filter system. | /* The outliner display modes that support the filter system. | ||||
| * Note: keep it synced with space_outliner.py */ | * Note: keep it synced with space_outliner.py */ | ||||
| #define SUPPORT_FILTER_OUTLINER(space_outliner_) \ | #define SUPPORT_FILTER_OUTLINER(space_outliner_) \ | ||||
| (ELEM((space_outliner_)->outlinevis, SO_VIEW_LAYER)) | (ELEM((space_outliner_)->outlinevis, SO_VIEW_LAYER, SO_OVERRIDES_LIBRARY)) | ||||
| /* Outliner Searching -- | /* Outliner Searching -- | ||||
| * | * | ||||
| * Are we looking for something in the outliner? | * Are we looking for something in the outliner? | ||||
| * If so finding matches in child items makes it more useful | * If so finding matches in child items makes it more useful | ||||
| * | * | ||||
| * - We want to flag parents to act as being open to filter child matches | * - We want to flag parents to act as being open to filter child matches | ||||
| * - and also flag matches so we can highlight them | * - and also flag matches so we can highlight them | ||||
| ▲ Show 20 Lines • Show All 356 Lines • Show Last 20 Lines | |||||