Fix the active sequencer strip not standing out from selected ones.

Set outline contrast back to 2.7 values.
This commit is contained in:
Brecht Van Lommel 2019-01-14 16:07:20 +01:00
parent 1af9599aca
commit 1665278c14
1 changed files with 1 additions and 1 deletions

View File

@ -1565,7 +1565,7 @@ static void draw_seq_strips(const bContext *C, Editing *ed, ARegion *ar)
/* loop through twice, first unselected, then selected */
for (j = 0; j < 2; j++) {
Sequence *seq;
int outline_tint = (j) ? 40 : -40; /* highlighting around strip edges indicating selection */
int outline_tint = (j) ? -60 : -150; /* highlighting around strip edges indicating selection */
/* loop through strips, checking for those that are visible */
for (seq = ed->seqbasep->first; seq; seq = seq->next) {