diff options
author | benadha <benawiadha@gmail.com> | 2021-11-12 14:35:50 +0700 |
---|---|---|
committer | benadha <benawiadha@gmail.com> | 2021-11-12 14:35:50 +0700 |
commit | 2ab1584d2e05b95587d209280b5a56811e651d72 (patch) | |
tree | f6cabc3578888a33d555999bc38631b457037cfb /epy.py | |
parent | 0eb1e5885e94048eb27c15e2a7b75a93e21bc0a5 (diff) | |
download | epy-2ab1584d2e05b95587d209280b5a56811e651d72.tar.gz |
Fixed reset to beginning of row when resizing term and Seamless==True
Diffstat (limited to 'epy.py')
-rwxr-xr-x | epy.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,7 +14,7 @@ Options: """ -__version__ = "2021.10.29" +__version__ = "2021.11.12" __license__ = "GPL-3.0" __author__ = "Benawi Adha" __email__ = "benawiadha@gmail.com" @@ -3093,7 +3093,7 @@ class Reader: return ReadingState( content_index=reading_state.content_index, textwidth=cols - 4, - row=0, + row=reading_state.row, rel_pctg=reading_state.row / totlines, ) else: |