From fd7687a985275cd12625ddab365a68b51c6106e5 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 6 Sep 2015 09:17:53 +0100 Subject: [PATCH] Revert accidentally committed breakage of Shift-Ins paste. I turned it into Shift-Return, because I was trying to find out why the former didn't work on OS X and replaced it with something else random to see if the code was even being reached. And then, like an utter doofus, I committed that change as part of a50da0e30. --- unix/gtkwin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix/gtkwin.c b/unix/gtkwin.c index 8b10535c..b2a8aae1 100644 --- a/unix/gtkwin.c +++ b/unix/gtkwin.c @@ -918,7 +918,7 @@ gint key_event(GtkWidget *widget, GdkEventKey *event, gpointer data) /* * Neither does Shift-Ins. */ - if (event->keyval == GDK_KEY_Return && + if (event->keyval == GDK_KEY_Insert && (event->state & GDK_SHIFT_MASK)) { request_paste(inst); return TRUE; -- 2.45.2