From 4515a3d9a4ed0013ac49e4b25c7310bb62646e31 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Thu, 14 Feb 2008 23:24:49 -0600 Subject: [PATCH] Draw playhead the same way, regardless of selection flag. --- gui/draw.C | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gui/draw.C b/gui/draw.C index 1143c23..ed4879e 100644 --- a/gui/draw.C +++ b/gui/draw.C @@ -173,7 +173,10 @@ gui_draw_shape ( int x, int y, int w, int h, int bw, int shape, int state, int f return; if ( flags & F_PLAYHEAD ) + { state = state == FULL ? HIT : PLAYHEAD; + flags &= ~ F_SELECTION; + } if ( state == FULL && color ) fl_color( velocity_colors[ color ] );