Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-05-27 14:16:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-27 15:23:31 +0300
commit33e792da2f25c7ba510d3cfef09e0504f97d9b23 (patch)
treecc1aafcd9dd93660e31c82e976bfeaf0f60f9e51 /source
parentf3fb7c5f22cf33e6cfe1392387e187ecb5cb7699 (diff)
Cleanup: remove redundant assignment
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenloader/intern/versioning_280.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/source/blender/blenloader/intern/versioning_280.c b/source/blender/blenloader/intern/versioning_280.c
index 70379c41b83..66ae743fdcb 100644
--- a/source/blender/blenloader/intern/versioning_280.c
+++ b/source/blender/blenloader/intern/versioning_280.c
@@ -2352,17 +2352,6 @@ void blo_do_versions_280(FileData *fd, Library *UNUSED(lib), Main *bmain)
for (SpaceLink *sl = sa->spacedata.first; sl; sl = sl->next) {
if (sl->spacetype == SPACE_VIEW3D) {
View3D *v3d = (View3D *)sl;
- v3d->shading.xray_alpha_wire = 0.0f;
- }
- }
- }
- }
-
- for (bScreen *screen = bmain->screens.first; screen; screen = screen->id.next) {
- for (ScrArea *sa = screen->areabase.first; sa; sa = sa->next) {
- for (SpaceLink *sl = sa->spacedata.first; sl; sl = sl->next) {
- if (sl->spacetype == SPACE_VIEW3D) {
- View3D *v3d = (View3D *)sl;
v3d->shading.flag |= V3D_SHADING_XRAY_BONE;
}
}