From 89d26989f3b3cdb8f0a34188a8e1aa3793504cb5 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Thu, 28 Jun 2012 00:38:41 -0700 Subject: [PATCH] Mixer: Panner: Don't mangle line-style. --- mixer/src/Panner.C | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mixer/src/Panner.C b/mixer/src/Panner.C index 8dd455a..5d63258 100644 --- a/mixer/src/Panner.C +++ b/mixer/src/Panner.C @@ -164,6 +164,8 @@ Panner::draw_the_box ( int tx, int ty, int tw, int th ) } } + fl_line_style( FL_SOLID, 0 ); + } void @@ -199,6 +201,8 @@ Panner::draw ( void ) if ( damage() & FL_DAMAGE_ALL ) draw_the_box( tx, ty, tw, th ); + fl_line_style( FL_SOLID, 2 ); + // fl_color( FL_RED ); fl_color( FL_WHITE ); @@ -314,6 +318,8 @@ Panner::draw ( void ) } done: + fl_line_style( FL_SOLID, 0 ); + fl_pop_clip(); } -- 2.11.4.GIT