Fix missing directory separator in image/movie strip identifier

This commit is contained in:
Campbell Barton 2021-01-11 17:17:10 +11:00
parent 16aefea9fa
commit b01e62e399
1 changed files with 1 additions and 1 deletions

View File

@ -629,7 +629,7 @@ static void draw_seq_text_get_source(Sequence *seq, char *r_source, size_t sourc
switch (seq->type) {
case SEQ_TYPE_IMAGE:
case SEQ_TYPE_MOVIE: {
BLI_snprintf(r_source, source_len, "%s%s", seq->strip->dir, seq->strip->stripdata->name);
BLI_join_dirfile(r_source, source_len, seq->strip->dir, seq->strip->stripdata->name);
break;
}
case SEQ_TYPE_SOUND_RAM: {