summaryrefslogtreecommitdiff
path: root/src/Fl_Choice.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Fl_Choice.cxx')
-rw-r--r--src/Fl_Choice.cxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/Fl_Choice.cxx b/src/Fl_Choice.cxx
index c23010c07..8646368d3 100644
--- a/src/Fl_Choice.cxx
+++ b/src/Fl_Choice.cxx
@@ -65,15 +65,16 @@ void Fl_Choice::draw() {
// Arrow box or horizontal divider line, depending on the current scheme
- // Scheme: Box or divider line
+ // Scheme: Box or divider line
// ----------------------------------------
- // Default (None): Arrow box (FL_UP_BOX)
- // gtk+, gleam: Divider line
- // else: Nothing (!)
+ // Default (None): Arrow box (FL_UP_BOX)
+ // gtk+, gleam, oxy: Divider line
+ // else: Nothing (!)
if (Fl::scheme()) {
if (Fl::is_scheme("gtk+") ||
- Fl::is_scheme("gleam")) {
+ Fl::is_scheme("gleam") ||
+ Fl::is_scheme("oxy")) {
// draw the divider
int x1 = x() + w() - 20 - dx;
int y1 = y() + h() / 2;