do_version for 2.34; sets outline select by default on on older

files. (testers; note that you cannot save 2.34 yet!)
This commit is contained in:
2004-08-03 21:42:37 +00:00
parent 248404e7a2
commit 05a87bc925

View File

@@ -4235,6 +4235,7 @@ static void do_versions(Main *main)
}
if(main->versionfile <= 233) {
bScreen *sc;
Material *ma= main->mat.first;
Object *ob= main->object.first;
@@ -4250,6 +4251,19 @@ static void do_versions(Main *main)
if(ob->ipowin==0) ob->ipowin= ID_OB;
ob= ob->id.next;
}
for (sc= main->screen.first; sc; sc= sc->id.next) {
ScrArea *sa;
for (sa= sc->areabase.first; sa; sa= sa->next) {
SpaceLink *sl;
for (sl= sa->spacedata.first; sl; sl= sl->next) {
if(sl->spacetype==SPACE_VIEW3D) {
View3D *v3d= (View3D *)sl;
v3d->flag |= V3D_SELECT_OUTLINE;
}
}
}
}
}
/* don't forget to set version number in blender.c! */