aboutsummaryrefslogtreecommitdiff
path: root/lib/basic.ml
diff options
context:
space:
mode:
authorMarc Coquand <marc@mccd.space>2024-05-30 10:04:25 -0500
committerMarc Coquand <marc@mccd.space>2024-05-30 10:04:25 -0500
commit87dcfa6edd43316068347ff5b8f23c76bdc7b472 (patch)
treec10abd3e81df14e0eaf5b9b1e35d2e76d5ce66e7 /lib/basic.ml
parent2c0f6e026acb2ecfc1c39d617f47d024e404bb9d (diff)
downloadstitch-87dcfa6edd43316068347ff5b8f23c76bdc7b472.tar.gz
stitch-87dcfa6edd43316068347ff5b8f23c76bdc7b472.tar.bz2
stitch-87dcfa6edd43316068347ff5b8f23c76bdc7b472.zip
Add half-screen down/up scrolling
Diffstat (limited to 'lib/basic.ml')
-rw-r--r--lib/basic.ml1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/basic.ml b/lib/basic.ml
index 76b6863..94838ab 100644
--- a/lib/basic.ml
+++ b/lib/basic.ml
@@ -1,3 +1,2 @@
let array_drop n arr =
if Array.length arr < n then [||] else Array.sub arr n (max (Array.length arr - n) 0)
-