From 8ca89622df3d3f30a4a8037b1498c26c65f304b2 Mon Sep 17 00:00:00 2001 From: SquareScreamYT <134925668+SquareScreamYT@users.noreply.github.com> Date: Tue, 19 Mar 2024 17:57:47 +0800 Subject: [PATCH] invertscroll --- mods/invertscroll.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 mods/invertscroll.js diff --git a/mods/invertscroll.js b/mods/invertscroll.js new file mode 100644 index 00000000..941389f5 --- /dev/null +++ b/mods/invertscroll.js @@ -0,0 +1,8 @@ +runAfterLoad(function() { + if (settings.invertscroll = true) { + settings.invertscroll = false; + } + else { + settings.invertscroll = true; + } +})