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/space_nla')
-rw-r--r--source/blender/editors/space_nla/nla_draw.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/source/blender/editors/space_nla/nla_draw.c b/source/blender/editors/space_nla/nla_draw.c
index 7b9f2faf08a..bbb666d01cc 100644
--- a/source/blender/editors/space_nla/nla_draw.c
+++ b/source/blender/editors/space_nla/nla_draw.c
@@ -291,6 +291,9 @@ static void nla_draw_strip (AnimData *adt, NlaTrack *nlt, NlaStrip *strip, View2
gl_round_box_shade(GL_POLYGON, strip->start, yminc, strip->end, ymaxc, 0.0, 0.5, 0.1);
+ /* draw influence 'curve' */
+ // TODO:
+
/* draw strip outline
* - color used here is to indicate active vs non-active
*/
@@ -378,11 +381,9 @@ static void nla_draw_strip_text (NlaTrack *nlt, NlaStrip *strip, int index, View
case NLASTRIP_TYPE_CLIP: /* Action-Clip (default) */
default:
- if (strip->act)
- sprintf(str, "%d | Act: %s | %.2f %s %.2f",
- index, strip->act->id.name+2, strip->start, dir, strip->end);
- else
- sprintf(str, "%d | Act: <NONE>", index); // xxx... need a better format?
+ sprintf(str, "%d | Act: %s | %.2f %s %.2f",
+ index, ((strip->act)?strip->act->id.name+2:"<NONE>"),
+ strip->start, dir, strip->end);
break;
}
@@ -396,9 +397,9 @@ static void nla_draw_strip_text (NlaTrack *nlt, NlaStrip *strip, int index, View
* - padding of 2 'units' on either side
*/
// TODO: make this centered?
- rect.xmin= strip->start + 2;
+ rect.xmin= strip->start + 0.5f;
rect.ymin= yminc;
- rect.xmax= strip->end - 2;
+ rect.xmax= strip->end - 0.5f;
rect.ymax= ymaxc;
/* add this string to the cache of texts to draw*/