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:
Diffstat (limited to 'source/blender/editors/include/ED_markers.h')
-rw-r--r--source/blender/editors/include/ED_markers.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/blender/editors/include/ED_markers.h b/source/blender/editors/include/ED_markers.h
index f3ca7135e40..a883187327f 100644
--- a/source/blender/editors/include/ED_markers.h
+++ b/source/blender/editors/include/ED_markers.h
@@ -35,9 +35,9 @@ struct wmKeyMap;
/* flags for drawing markers */
enum {
- DRAW_MARKERS_LINES = (1 << 0),
- DRAW_MARKERS_LOCAL = (1 << 1),
- DRAW_MARKERS_MARGIN = (1 << 2),
+ DRAW_MARKERS_LINES = (1 << 0),
+ DRAW_MARKERS_LOCAL = (1 << 1),
+ DRAW_MARKERS_MARGIN = (1 << 2),
};
void ED_markers_draw(const struct bContext *C, int flag);
@@ -47,7 +47,8 @@ void ED_markers_draw(const struct bContext *C, int flag);
ListBase *ED_context_get_markers(const struct bContext *C);
ListBase *ED_animcontext_get_markers(const struct bAnimContext *ac);
-int ED_markers_post_apply_transform(ListBase *markers, struct Scene *scene, int mode, float value, char side);
+int ED_markers_post_apply_transform(
+ ListBase *markers, struct Scene *scene, int mode, float value, char side);
struct TimeMarker *ED_markers_find_nearest_marker(ListBase *markers, float x);
int ED_markers_find_nearest_marker_time(ListBase *markers, float x);