right-click plumb: use interactive flag - sfeed_curses - sfeed curses UI (now part of sfeed, development is in sfeed)
(HTM) git clone git://git.codemadness.org/sfeed_curses
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 6638160adb2c006ba386036173dc50dc63571e69
(DIR) parent 26db62828804cef0fe6cc1db2afae6414311321e
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
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(-)
---
(DIR) diff --git a/sfeed_curses.c b/sfeed_curses.c
@@ -1765,7 +1765,7 @@ mousereport(int button, int release, int keymask, int x, int y)
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 */