diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-06-20 16:56:29 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-06-20 16:56:29 -0300 |
commit | cce3749761fc036f196cb50319c591f5d1fa5625 (patch) | |
tree | 13a4691221c0e46e672f9c5b0976c7d28f47b80a /jet.cpp | |
parent | 74f957ef54a912b9396232fb3b0bb8c8c47bf5f7 (diff) | |
download | jet-cce3749761fc036f196cb50319c591f5d1fa5625.tar.gz jet-cce3749761fc036f196cb50319c591f5d1fa5625.zip |
Fix cursor jumping to bottom of screen on rseek
Diffstat (limited to 'jet.cpp')
-rw-r--r-- | jet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ #include <assert.h> #include <locale.h> #include <curses.h> -#define PAGE_SIZE 16 +#define PAGE_SIZE 2 #include "page.cpp" #include "point.cpp" #include "buffer.cpp" |