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
diff options
context:
space:
mode:
authorMatt Ebb <matt@mke3.net>2010-05-10 05:46:44 +0400
committerMatt Ebb <matt@mke3.net>2010-05-10 05:46:44 +0400
commitd384174b455c58f4f38a29dc518ce0b3d8fa696d (patch)
tree895acfb97754d29c71ffe0f1f09b8c3364d3b720 /source/blender/blenloader
parent29ba391a164d432c5710a1fba1b4e70ea06acde7 (diff)
Tweaks to image editor scopes, while testing a bug
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 08835c4cb28..90503a83698 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -10841,13 +10841,7 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
for (sl= sa->spacedata.first; sl; sl= sl->next) {
if(sl->spacetype==SPACE_IMAGE) {
SpaceImage *sima = (SpaceImage *)sl;
- sima->scopes.accuracy = 30.0;
- sima->scopes.hist.mode=HISTO_MODE_RGB;
- sima->scopes.wavefrm_alpha=0.3;
- sima->scopes.vecscope_alpha=0.3;
- sima->scopes.wavefrm_height= 100;
- sima->scopes.vecscope_height= 100;
- sima->scopes.hist.height= 100;
+ scopes_new(&sima->scopes);
}
}
}