diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2023-01-02 17:59:52 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2023-01-02 18:00:47 +0100 |
| commit | e8f260203240e92bf316d631f019ae29a32621a8 (patch) | |
| tree | 8bce5bdb90fa0f96316be0e71343932eca86625c /src/fl_boxtype.cxx | |
| parent | a1ebe027be1dbe1b4478704bcb6337596e059374 (diff) | |
Fix box frame sizes of "round" boxes in scheme 'oxy'
Diffstat (limited to 'src/fl_boxtype.cxx')
| -rw-r--r-- | src/fl_boxtype.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fl_boxtype.cxx b/src/fl_boxtype.cxx index 08d80cb45..96d016fe1 100644 --- a/src/fl_boxtype.cxx +++ b/src/fl_boxtype.cxx @@ -16,7 +16,7 @@ /** \file fl_boxtype.cxx - \brief drawing code for common box types. + \brief Drawing code for common box types. */ // Box drawing code for the common box types and the table of @@ -352,8 +352,8 @@ static struct { {fl_thin_down_box, 1,1,2,2,0}, // _FL_OXY_THIN_DOWN_BOX, {fl_thin_up_frame, 1,1,2,2,0}, // _FL_OXY_THIN_UP_FRAME, {fl_thin_down_frame, 1,1,2,2,0}, // _FL_OXY_THIN_DOWN_FRAME, - {fl_up_box, 4,4,8,8,0}, // _FL_OXY_ROUND_UP_BOX, - {fl_down_box, 4,4,8,8,0}, // _FL_OXY_ROUND_DOWN_BOX, + {fl_up_box, 2,2,4,4,0}, // _FL_OXY_ROUND_UP_BOX, + {fl_down_box, 2,2,4,4,0}, // _FL_OXY_ROUND_DOWN_BOX, {fl_up_box, 2,2,4,4,0}, // _FL_OXY_BUTTON_UP_BOX, {fl_down_box, 2,2,4,4,0}, // _FL_OXY_BUTTON_DOWN_BOX, {fl_up_box, 3,3,6,6,0}, // FL_FREE_BOX+0 |
