From 99a1daf1a98fd3929603915c99021e5012f96dbf Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Mon, 2 Jan 2023 18:14:15 +0100 Subject: 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. --- src/fl_oxy.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3