aboutsummaryrefslogtreecommitdiffstats
path: root/epy.py
diff options
context:
space:
mode:
Diffstat (limited to 'epy.py')
-rwxr-xr-xepy.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/epy.py b/epy.py
index d6f5385..6b57aef 100755
--- a/epy.py
+++ b/epy.py
@@ -1321,7 +1321,10 @@ def reader(ebook, index, width, y, pctg, sect):
return bmtojump[1]-index, width, bmtojump[2], bmtojump[3], ""
elif k in K["DefineWord"] and DICT is not None:
word = input_prompt(" Define:")
- if word is not None:
+ if word == curses.KEY_RESIZE:
+ k = word
+ continue
+ elif word is not None:
defin = define_word(word)
if defin in WINKEYS:
k = defin