From 827bf4dc5160a00f6fbdfc431ef092afe95aa776 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Wed, 24 Jul 2002 12:15:25 +0000 Subject: Use better looking check mark from Albrecht Schlosser. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2547 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Light_Button.cxx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'src/Fl_Light_Button.cxx') diff --git a/src/Fl_Light_Button.cxx b/src/Fl_Light_Button.cxx index a43f22ddc..9b3c9295a 100644 --- a/src/Fl_Light_Button.cxx +++ b/src/Fl_Light_Button.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Light_Button.cxx,v 1.4.2.3.2.17 2002/05/03 14:59:31 easysw Exp $" +// "$Id: Fl_Light_Button.cxx,v 1.4.2.3.2.18 2002/07/24 12:15:25 easysw Exp $" // // Lighted button widget for the Fast Light Tool Kit (FLTK). // @@ -57,10 +57,12 @@ void Fl_Light_Button::draw() { draw_box(down_box(), x()+dx, y()+dy, W, W, FL_BACKGROUND2_COLOR); if (value()) { fl_color(col); - fl_line_style(FL_SOLID, 2); - fl_line(x() + dx + W - 3, y() + dy + 3, - x() + dx + W / 2 - 1, y() + dy + W - 4, - x() + dx + 3, y() + dy + W / 2); + int xu = x() + dx + W/3 + 1; + int yu = y() + dy + W - 4; + fl_line_style(FL_SOLID, 1); + fl_line(xu - 2, yu - 2, xu, yu, xu + 5, yu - 5); + fl_line(xu - 2, yu - 3, xu, yu - 1, xu + 5, yu - 6); + fl_line(xu - 2, yu - 4, xu, yu - 2, xu + 5, yu - 7); fl_line_style(FL_SOLID); } break; @@ -142,5 +144,5 @@ Fl_Light_Button::Fl_Light_Button(int x, int y, int w, int h, const char* l) } // -// End of "$Id: Fl_Light_Button.cxx,v 1.4.2.3.2.17 2002/05/03 14:59:31 easysw Exp $". +// End of "$Id: Fl_Light_Button.cxx,v 1.4.2.3.2.18 2002/07/24 12:15:25 easysw Exp $". // -- cgit v1.2.3