Fix light button drawing so that the glowing LED mode is only used when

Fl::scheme() is "plastic".


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5502 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 2006-10-02 14:29:43 +00:00
parent 5e39761d40
commit 849ecabf53
1 changed files with 2 additions and 1 deletions

View File

@ -35,6 +35,7 @@
#include <FL/Fl.H> #include <FL/Fl.H>
#include <FL/Fl_Light_Button.H> #include <FL/Fl_Light_Button.H>
#include <FL/fl_draw.H> #include <FL/fl_draw.H>
#include "flstring.h"
void Fl_Light_Button::draw() { void Fl_Light_Button::draw() {
if (box()) draw_box(this==Fl::pushed() ? fl_down(box()) : box(), color()); if (box()) draw_box(this==Fl::pushed() ? fl_down(box()) : box(), color());
@ -118,7 +119,7 @@ void Fl_Light_Button::draw() {
int ww = W/2+1; int ww = W/2+1;
int xx = dx; int xx = dx;
if (w()<ww+2*xx) xx = (w()-ww)/2; if (w()<ww+2*xx) xx = (w()-ww)/2;
if (Fl::scheme()) { if (Fl::scheme() && !strcmp(Fl::scheme(), "plastic")) {
col = active_r() ? selection_color() : fl_inactive(selection_color()); col = active_r() ? selection_color() : fl_inactive(selection_color());
fl_color(value() ? col : fl_color_average(col, FL_BLACK, 0.5f)); fl_color(value() ? col : fl_color_average(col, FL_BLACK, 0.5f));
fl_pie(x()+xx, y()+dy+1, ww, hh, 0, 360); fl_pie(x()+xx, y()+dy+1, ww, hh, 0, 360);