summaryrefslogtreecommitdiff
path: root/src/fl_gleam.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2024-04-26 12:42:11 +0200
committerMatthias Melcher <github@matthiasm.com>2024-04-26 12:42:11 +0200
commit281ec24c8f4b7daf7cc4e7c30b640cbe0b33d037 (patch)
tree254e20596d544cb25d32ab2067d9e18afc4ac097 /src/fl_gleam.cxx
parent9a0d1f16d7b78a7e789c30728df79166b95da115 (diff)
Box types can now defined and draw their own focus frame, STR 2145, #659
Diffstat (limited to 'src/fl_gleam.cxx')
-rw-r--r--src/fl_gleam.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fl_gleam.cxx b/src/fl_gleam.cxx
index c75472dc5..d7f80adc6 100644
--- a/src/fl_gleam.cxx
+++ b/src/fl_gleam.cxx
@@ -164,7 +164,7 @@ static void thin_down_box(int x, int y, int w, int h, Fl_Color c) {
frame_rect_down(x, y, w, h, c, fl_color_average(c, FL_BLACK, .45f), .35f, 0.85f);
}
-extern void fl_internal_boxtype(Fl_Boxtype, Fl_Box_Draw_F*);
+extern void fl_internal_boxtype(Fl_Boxtype, Fl_Box_Draw_F*, Fl_Box_Draw_Focus_F* =NULL);
Fl_Boxtype fl_define_FL_GLEAM_UP_BOX() {
fl_internal_boxtype(_FL_GLEAM_UP_BOX, up_box);