summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2023-01-02 18:14:15 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2023-01-02 18:15:00 +0100
commit99a1daf1a98fd3929603915c99021e5012f96dbf (patch)
tree5ec35a6f8f54f3347f4e7a1dcce9b07e387d7ca7
parente8f260203240e92bf316d631f019ae29a32621a8 (diff)
Modify 'oxy' scheme's "choice arrow" for consistency
The "choice arrow" used two "down-arrows" which was different than all the other schemes. Changed to up-arrow and down-arrow to make this more consistent. The exception is the default scheme (none or base) which uses only one down-arrow.
-rw-r--r--src/fl_oxy.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fl_oxy.cxx b/src/fl_oxy.cxx
index 744c9421f..0768a75de 100644
--- a/src/fl_oxy.cxx
+++ b/src/fl_oxy.cxx
@@ -117,7 +117,7 @@ void oxy_arrow(Fl_Rect bb, Fl_Arrow_Type t, Fl_Orientation o, Fl_Color col) {
bb.y(bb.y() - 2); // shift upwards
bb.h(bb.h() - 4); // reduce size
- single_arrow(bb, FL_ORIENT_DOWN, col);
+ single_arrow(bb, FL_ORIENT_UP, col);
bb.y(bb.y() + 4); // shift down
single_arrow(bb, FL_ORIENT_DOWN, col);
break;