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:
authorCampbell Barton <ideasman42@gmail.com>2014-10-28 20:51:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2014-10-28 20:51:28 +0300
commit36da579d122fe49f3db8759e38d6ff1921939ad4 (patch)
treebad70381af315f67e824f9d23d794c171e122a02 /source/blender/editors/include/ED_markers.h
parentb2b1d8e2908e5960b700c70a6baf93b9745845bc (diff)
Markers: show the area that handles marker events
Diffstat (limited to 'source/blender/editors/include/ED_markers.h')
-rw-r--r--source/blender/editors/include/ED_markers.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_markers.h b/source/blender/editors/include/ED_markers.h
index 76d36623b60..241cd700c20 100644
--- a/source/blender/editors/include/ED_markers.h
+++ b/source/blender/editors/include/ED_markers.h
@@ -43,7 +43,8 @@ struct TimeMarker;
/* flags for drawing markers */
enum {
DRAW_MARKERS_LINES = (1 << 0),
- DRAW_MARKERS_LOCAL = (1 << 1)
+ DRAW_MARKERS_LOCAL = (1 << 1),
+ DRAW_MARKERS_MARGIN = (1 << 2),
};
void draw_markers_time(const struct bContext *C, int flag);