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:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-08-12 18:55:44 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-08-12 18:55:44 +0400
commitfa89789247c72c4b674919abd2c99b5057198f29 (patch)
treee938de6fae5343550da164ce8c9a4cde9a816859 /source/blender/editors/space_clip/space_clip.c
parent5ddb23daec7befc31f13bb99c916664b20b563e6 (diff)
Camera tracking integration
=========================== - Option to hide grease pencil (Display -> Grease Pencil). - Added grease pencil controls to toolar. - Fixed display issues when stroke contains one point only and Manual Calibration is enabled.
Diffstat (limited to 'source/blender/editors/space_clip/space_clip.c')
-rw-r--r--source/blender/editors/space_clip/space_clip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_clip/space_clip.c b/source/blender/editors/space_clip/space_clip.c
index ef33241bd51..ef0457d92df 100644
--- a/source/blender/editors/space_clip/space_clip.c
+++ b/source/blender/editors/space_clip/space_clip.c
@@ -105,7 +105,7 @@ static SpaceLink *clip_new(const bContext *UNUSED(C))
sc= MEM_callocN(sizeof(SpaceClip), "initclip");
sc->spacetype= SPACE_CLIP;
- sc->flag= SC_SHOW_MARKER_PATTERN|SC_SHOW_TRACK_PATH;
+ sc->flag= SC_SHOW_MARKER_PATTERN|SC_SHOW_TRACK_PATH|SC_SHOW_GPENCIL;
sc->zoom= 1.0f;
sc->path_length= 20;
sc->scopes.track_preview_height= 120;