diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-11-18 17:26:44 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-11-18 17:26:44 +0000 |
| commit | 402527311e6d96655bd8fc32e7560b99c7c5cd9c (patch) | |
| tree | c8bcf6b0b33976b1b7d2b87ee2bd673e75536052 /src/Fl_Slider.cxx | |
| parent | 5098fc05afd997748cc602f71eca11f8d20ab2ac (diff) | |
The slider was not drawing the bar inactive.
git-svn-id: file:///fltk/svn/fltk/trunk@91 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Slider.cxx')
| -rw-r--r-- | src/Fl_Slider.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Fl_Slider.cxx b/src/Fl_Slider.cxx index 6fe024754..2fbdb71f0 100644 --- a/src/Fl_Slider.cxx +++ b/src/Fl_Slider.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Slider.cxx,v 1.4 1998/10/21 14:20:22 mike Exp $" +// "$Id: Fl_Slider.cxx,v 1.5 1998/11/18 17:26:44 mike Exp $" // // Slider widget for the Fast Light Tool Kit (FLTK). // @@ -85,10 +85,11 @@ int Fl_Slider::scrollvalue(int p, int w, int t, int l) { void Fl_Slider::draw_bg(int x, int y, int w, int h) { draw_box(box(), x, y, w, h, color()); int BW = Fl::box_dx(box()); + int black = active() ? FL_BLACK : inactive(FL_BLACK); if (type() == FL_VERT_NICE_SLIDER) { - draw_box(FL_THIN_DOWN_BOX, x+w/2-2, y+BW, 4, h-2*BW, FL_BLACK); + draw_box(FL_THIN_DOWN_BOX, x+w/2-2, y+BW, 4, h-2*BW, black); } else if (type() == FL_HOR_NICE_SLIDER) { - draw_box(FL_THIN_DOWN_BOX, x+BW, y+h/2-2, w-2*BW, 4, FL_BLACK); + draw_box(FL_THIN_DOWN_BOX, x+BW, y+h/2-2, w-2*BW, 4, black); } } @@ -227,5 +228,5 @@ int Fl_Slider::handle(int event) { } // -// End of "$Id: Fl_Slider.cxx,v 1.4 1998/10/21 14:20:22 mike Exp $". +// End of "$Id: Fl_Slider.cxx,v 1.5 1998/11/18 17:26:44 mike Exp $". // |
