aboutsummaryrefslogtreecommitdiffstats
path: root/epy.py
diff options
context:
space:
mode:
authorbenadha <benawiadha@gmail.com>2021-11-12 14:35:50 +0700
committerbenadha <benawiadha@gmail.com>2021-11-12 14:35:50 +0700
commit2ab1584d2e05b95587d209280b5a56811e651d72 (patch)
treef6cabc3578888a33d555999bc38631b457037cfb /epy.py
parent0eb1e5885e94048eb27c15e2a7b75a93e21bc0a5 (diff)
downloadepy-2ab1584d2e05b95587d209280b5a56811e651d72.tar.gz
Fixed reset to beginning of row when resizing term and Seamless==True
Diffstat (limited to 'epy.py')
-rwxr-xr-xepy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/epy.py b/epy.py
index b49d7ce..11eca60 100755
--- a/epy.py
+++ b/epy.py
@@ -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: