begin moving text window when cursor goes off screen (currently, we only move the window when cursor goes backwards but this works fine and as expected)

This commit is contained in:
2024-10-28 09:34:55 +00:00
parent deab30c46d
commit 4b1ee33954
7 changed files with 120 additions and 41 deletions

7
fcore/text-constants.sml Normal file
View File

@@ -0,0 +1,7 @@
structure TextConstants =
struct
val xSpace = 13
val xSpace3 = xSpace * 3
val ySpace = 25
val fontSize : Real32.real = 30.0
end