[Bf-blender-cvs] [1665278c14f] master: Fix the active sequencer strip not standing out from selected ones.

Brecht Van Lommel noreply at git.blender.org
Mon Jan 14 16:11:20 CET 2019


Commit: 1665278c14faa2a51ff2f0e33947b73aada25b12
Author: Brecht Van Lommel
Date:   Mon Jan 14 16:07:20 2019 +0100
Branches: master
https://developer.blender.org/rB1665278c14faa2a51ff2f0e33947b73aada25b12

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

Set outline contrast back to 2.7 values.

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

M	source/blender/editors/space_sequencer/sequencer_draw.c

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

diff --git a/source/blender/editors/space_sequencer/sequencer_draw.c b/source/blender/editors/space_sequencer/sequencer_draw.c
index e56ad07eeba..9593ca4a6e3 100644
--- a/source/blender/editors/space_sequencer/sequencer_draw.c
+++ b/source/blender/editors/space_sequencer/sequencer_draw.c
@@ -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) {



More information about the Bf-blender-cvs mailing list