1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-12 18:13:50 -05:00

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.
This commit is contained in:
Simon Tatham 2015-09-06 09:17:53 +01:00
parent 30e63c1059
commit fd7687a985

View File

@ -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;