From 718024473c5661992f52c339ab1da0981183494c Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 5 Jun 2016 04:05:09 -0400 Subject: update selection on right click --- src/window-xlib.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/window-xlib.c b/src/window-xlib.c index 0d1fe4f..eee7157 100644 --- a/src/window-xlib.c +++ b/src/window-xlib.c @@ -1090,6 +1090,9 @@ static int runes_window_handle_builtin_button_press( runes_window_paste(t, e->time); return 1; break; + case Button3: + runes_window_update_selection(t, e->x, e->y); + break; case Button4: runes_window_visible_scroll(t, t->config->scroll_lines); return 1; -- cgit v1.2.3