From c684a49afc0c40a61208668beb96f0e32410ff00 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Mon, 18 Jan 2010 00:26:16 -0600 Subject: [PATCH] Mixer: Fix box type of strip name widgets. --- Mixer/Mixer_Strip.C | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Mixer/Mixer_Strip.C b/Mixer/Mixer_Strip.C index 4382a11..10a0b20 100644 --- a/Mixer/Mixer_Strip.C +++ b/Mixer/Mixer_Strip.C @@ -303,9 +303,12 @@ Mixer_Strip::init ( ) o->type( Fl_Pack::VERTICAL ); o->spacing( 2 ); { - Fl_Input *o = name_field = new Fl_Sometimes_Input( 2, 2, 144, 24 ); + Fl_Sometimes_Input *o = new Fl_Sometimes_Input( 2, 2, 144, 24 ); + name_field = o; + o->color( color() ); - o->box( FL_FLAT_BOX ); + o->up_box( FL_ROUNDED_BOX ); + o->box( FL_ROUNDED_BOX ); o->labeltype( FL_NO_LABEL ); o->labelcolor( FL_GRAY0 ); o->textcolor( FL_FOREGROUND_COLOR ); -- 2.11.4.GIT