Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenloader/intern/versioning_legacy.c
| Show First 20 Lines • Show All 2,537 Lines • ▼ Show 20 Lines | |||||
| if (bmain->versionfile < 249 && bmain->subversionfile < 2) { | if (bmain->versionfile < 249 && bmain->subversionfile < 2) { | ||||
| Scene *sce = bmain->scenes.first; | Scene *sce = bmain->scenes.first; | ||||
| Editing *ed; | Editing *ed; | ||||
| while (sce) { | while (sce) { | ||||
| ed = sce->ed; | ed = sce->ed; | ||||
| if (ed) { | if (ed) { | ||||
| LISTBASE_FOREACH (Sequence *, seq, SEQ_active_seqbase_get(ed)) { | LISTBASE_FOREACH (Sequence *, seq, ed->seqbasep) { | ||||
| if (seq->strip && seq->strip->proxy) { | if (seq->strip && seq->strip->proxy) { | ||||
| seq->strip->proxy->quality = 90; | seq->strip->proxy->quality = 90; | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| sce = sce->id.next; | sce = sce->id.next; | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||