summaryrefslogtreecommitdiff
path: root/src/Fl_Light_Button.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-09-04 13:13:29 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-09-04 13:13:29 +0000
commit9a528400f083b3761e0d54565ea1002604f5472a (patch)
tree789a2d8e0283ad5715026bba5dcd4ce805a067f5 /src/Fl_Light_Button.cxx
parentbc3de1ec15062a9016150c124d6a4d6c14d87720 (diff)
Doco updates.
Add directory-only support to Fl_FileBrowser. Update button and menu drawing code for check and radio buttons. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1582 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Light_Button.cxx')
-rw-r--r--src/Fl_Light_Button.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Fl_Light_Button.cxx b/src/Fl_Light_Button.cxx
index 3a554ac62..7993ff909 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.2 2001/08/04 20:17:10 easysw Exp $"
+// "$Id: Fl_Light_Button.cxx,v 1.4.2.3.2.3 2001/09/04 13:13:29 easysw Exp $"
//
// Lighted button widget for the Fast Light Tool Kit (FLTK).
//
@@ -50,9 +50,9 @@ void Fl_Light_Button::draw() {
if (value()) {
fl_color(col);
fl_line_style(FL_SOLID, 2);
- fl_line(x() + W - d - 6, y() + d + 4,
- x() + W / 2 - 2, y() + W - d - 6,
- x() + d + 4, y() + W / 2 - 1);
+ fl_line(x() + W - d - 7, y() + d + 5,
+ x() + W / 2 - 1, y() + W - d - 7,
+ x() + d + 5, y() + W / 2);
fl_line_style(FL_SOLID);
}
break;
@@ -105,5 +105,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.2 2001/08/04 20:17:10 easysw Exp $".
+// End of "$Id: Fl_Light_Button.cxx,v 1.4.2.3.2.3 2001/09/04 13:13:29 easysw Exp $".
//