summaryrefslogtreecommitdiff
path: root/fluid/fluid.cxx
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2022-11-24 19:00:00 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2022-11-25 00:00:48 +0100
commitb1ba37c5ba1df543baa87d328805af34da4bd2b1 (patch)
tree01d6ff63843cd9ed1f58fd2ab201f462bf11a385 /fluid/fluid.cxx
parent40f376a6f707e6c5ae69c0f73300575bd79e28e3 (diff)
Add "Oxy" scheme (STR 2675, STR 3477)
This commit is similar to the patch given in STR 3477, oxy_v5.diff: https://www.fltk.org/strfiles/3477/oxy_v5.diff ... with modifications, and updated to current FLTK code.
Diffstat (limited to 'fluid/fluid.cxx')
-rw-r--r--fluid/fluid.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/fluid/fluid.cxx b/fluid/fluid.cxx
index ea8744831..3c695091d 100644
--- a/fluid/fluid.cxx
+++ b/fluid/fluid.cxx
@@ -1427,6 +1427,9 @@ void scheme_cb(Fl_Choice *, void *) {
case 4 : // Gleam
Fl::scheme("gleam");
break;
+ case 5 : // Oxy
+ Fl::scheme("oxy");
+ break;
}
fluid_prefs.set("scheme", scheme_choice->value());