Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenloader/intern/versioning_280.c
| Show First 20 Lines • Show All 3,926 Lines • ▼ Show 20 Lines | for (bScreen *screen = bmain->screens.first; screen; screen = screen->id.next) { | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| { | { | ||||
| /* Versioning code until next subversion bump goes here. */ | /* Versioning code until next subversion bump goes here. */ | ||||
| for (Brush *br = bmain->brushes.first; br; br = br->id.next) { | |||||
jbakker: cann't we use `DNA_struct_elem_find` ? | |||||
| if (br->ob_mode & OB_MODE_SCULPT && br->sculpt_tool == SCULPT_TOOL_POSE && | |||||
| br->pose_smooth_iterations == 0) { | |||||
| br->pose_smooth_iterations = 4; | |||||
| } | |||||
| } | |||||
| } | } | ||||
| } | } | ||||
cann't we use DNA_struct_elem_find ?