right-click plumb: use interactive flag - sfeed_curses - sfeed curses UI (now p… | |
git clone git://git.codemadness.org/sfeed_curses | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 6638160adb2c006ba386036173dc50dc63571e69 | |
parent 26db62828804cef0fe6cc1db2afae6414311321e | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Fri, 26 Mar 2021 18:20:25 +0100 | |
right-click plumb: use interactive flag | |
This flag $SFEED_PIPER_INTERACTIVE was respected by the keybind but not by the | |
mouse-click action. | |
Diffstat: | |
M sfeed_curses.c | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/sfeed_curses.c b/sfeed_curses.c | |
@@ -1765,7 +1765,7 @@ mousereport(int button, int release, int keymask, int x, … | |
row = pane_row_get(p, p->pos); | |
item = (struct item *)row->data; | |
markread(p, p->pos, p->pos, 1); | |
- pipeitem(pipercmd, item, -1, 1); | |
+ pipeitem(pipercmd, item, -1, piperia); | |
} | |
break; | |
case 3: /* scroll up */ |