mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-06-30 19:12:48 -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:
@ -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;
|
||||
|
Reference in New Issue
Block a user