[Bf-blender-cvs] [8287f31876b] master: Fix T64298: Overlapping scrubbing area in clip editors dopesheet

Jacques Lucke noreply at git.blender.org
Wed May 8 10:30:29 CEST 2019


Commit: 8287f31876b4c252f9eae042c4a6f27d69c45598
Author: Jacques Lucke
Date:   Wed May 8 10:29:17 2019 +0200
Branches: master
https://developer.blender.org/rB8287f31876b4c252f9eae042c4a6f27d69c45598

Fix T64298: Overlapping scrubbing area in clip editors dopesheet

===================================================================

M	source/blender/editors/space_clip/clip_intern.h

===================================================================

diff --git a/source/blender/editors/space_clip/clip_intern.h b/source/blender/editors/space_clip/clip_intern.h
index 70dc1caf36f..081515ca4bc 100644
--- a/source/blender/editors/space_clip/clip_intern.h
+++ b/source/blender/editors/space_clip/clip_intern.h
@@ -35,7 +35,7 @@ struct bContext;
 struct wmOperatorType;
 
 /* channel heights */
-#define CHANNEL_FIRST (-0.8f * U.widget_unit)
+#define CHANNEL_FIRST (-UI_SCRUBBING_MARGIN_Y - CHANNEL_HEIGHT_HALF - CHANNEL_SKIP)
 #define CHANNEL_HEIGHT (0.8f * U.widget_unit)
 #define CHANNEL_HEIGHT_HALF (0.4f * U.widget_unit)
 #define CHANNEL_SKIP (0.1f * U.widget_unit)



More information about the Bf-blender-cvs mailing list