aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xepy.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/epy.py b/epy.py
index 4e2f96c..0d738cc 100755
--- a/epy.py
+++ b/epy.py
@@ -944,6 +944,9 @@ def choice_win(allowdel=False):
elif mouse_event[4] == curses.BUTTON1_CLICKED\
and mouse_event[2] >= 6 and mouse_event[2] < rows-4\
and mouse_event[2] < 6+totlines:
+ if index == mouse_event[2]-6+y:
+ key_chwin = list(K["Follow"])[0]
+ continue
index = mouse_event[2]-6+y
elif mouse_event[4] == curses.BUTTON3_CLICKED:
key_chwin = list(K["Quit"])[0]