Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_outliner/space_outliner.cc
| Show First 20 Lines • Show All 315 Lines • ▼ Show 20 Lines | case NC_SPACE: | ||||
| ED_region_tag_redraw(region); | ED_region_tag_redraw(region); | ||||
| } | } | ||||
| break; | break; | ||||
| } | } | ||||
| } | } | ||||
| /* ******************** default callbacks for outliner space ***************** */ | /* ******************** default callbacks for outliner space ***************** */ | ||||
| static SpaceLink *outliner_create(const ScrArea * /*area*/, const Scene * /*scene*/) | static SpaceLink *outliner_create(const wmWindow * /* win */, const ScrArea * /* area */) | ||||
| { | { | ||||
| ARegion *region; | ARegion *region; | ||||
| SpaceOutliner *space_outliner; | SpaceOutliner *space_outliner; | ||||
| space_outliner = MEM_cnew<SpaceOutliner>("initoutliner"); | space_outliner = MEM_cnew<SpaceOutliner>("initoutliner"); | ||||
| space_outliner->spacetype = SPACE_OUTLINER; | space_outliner->spacetype = SPACE_OUTLINER; | ||||
| space_outliner->filter_id_type = ID_GR; | space_outliner->filter_id_type = ID_GR; | ||||
| space_outliner->show_restrict_flags = SO_RESTRICT_ENABLE | SO_RESTRICT_HIDE | SO_RESTRICT_RENDER; | space_outliner->show_restrict_flags = SO_RESTRICT_ENABLE | SO_RESTRICT_HIDE | SO_RESTRICT_RENDER; | ||||
| ▲ Show 20 Lines • Show All 277 Lines • Show Last 20 Lines | |||||