summaryrefslogtreecommitdiff
path: root/src/Fl_Light_Button.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-07-24 12:15:25 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-07-24 12:15:25 +0000
commit827bf4dc5160a00f6fbdfc431ef092afe95aa776 (patch)
treebfbf03b3284f81a75807b1bc1c04f9e738b3973e /src/Fl_Light_Button.cxx
parentd453884e0ffdc49bf42f373581210d95d56a0985 (diff)
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
Diffstat (limited to 'src/Fl_Light_Button.cxx')
-rw-r--r--src/Fl_Light_Button.cxx14
1 files changed, 8 insertions, 6 deletions
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 $".
//