diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2005-02-06 01:42:40 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2005-02-06 01:42:40 +0000 |
| commit | de9bea20b5afe66b2df2965cd5e48aae0a757353 (patch) | |
| tree | b5d748961bb70e31bccded3eccabbb1f15d88679 /src/fl_boxtype.cxx | |
| parent | b32fefd1c58eba842cec3c095b42542dece3654f (diff) | |
FL_SHADOW_BOX/FRAME drew outside of the bounding box (STR #694)
src/fl_boxtype.cxx:
- Adjust box dw/dh for shadow box/frame types.
src/fl_shadow_box.cxx:
- Adjust shadow box to draw inside the bounding box.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4033 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_boxtype.cxx')
| -rw-r--r-- | src/fl_boxtype.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fl_boxtype.cxx b/src/fl_boxtype.cxx index 226cd8499..79407e09b 100644 --- a/src/fl_boxtype.cxx +++ b/src/fl_boxtype.cxx @@ -1,5 +1,5 @@ // -// "$Id: fl_boxtype.cxx,v 1.8.2.4.2.14 2004/04/11 04:38:59 easysw Exp $" +// "$Id$" // // Box drawing code for the Fast Light Tool Kit (FLTK). // @@ -207,9 +207,9 @@ static struct { {fl_engraved_frame, 2,2,4,4,1}, {fl_embossed_frame, 2,2,4,4,1}, {fl_border_box, 1,1,2,2,1}, - {fl_border_box, 1,1,2,2,0}, // _FL_SHADOW_BOX, + {fl_border_box, 1,1,5,5,0}, // _FL_SHADOW_BOX, {fl_border_frame, 1,1,2,2,1}, - {fl_border_frame, 1,1,2,2,0}, // _FL_SHADOW_FRAME, + {fl_border_frame, 1,1,5,5,0}, // _FL_SHADOW_FRAME, {fl_border_box, 1,1,2,2,0}, // _FL_ROUNDED_BOX, {fl_border_box, 1,1,2,2,0}, // _FL_RSHADOW_BOX, {fl_border_frame, 1,1,2,2,0}, // _FL_ROUNDED_FRAME @@ -297,5 +297,5 @@ const { } // -// End of "$Id: fl_boxtype.cxx,v 1.8.2.4.2.14 2004/04/11 04:38:59 easysw Exp $". +// End of "$Id$". // |
