mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-16 12:03:03 -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:
parent
30e63c1059
commit
fd7687a985
@ -918,7 +918,7 @@ gint key_event(GtkWidget *widget, GdkEventKey *event, gpointer data)
|
|||||||
/*
|
/*
|
||||||
* Neither does Shift-Ins.
|
* Neither does Shift-Ins.
|
||||||
*/
|
*/
|
||||||
if (event->keyval == GDK_KEY_Return &&
|
if (event->keyval == GDK_KEY_Insert &&
|
||||||
(event->state & GDK_SHIFT_MASK)) {
|
(event->state & GDK_SHIFT_MASK)) {
|
||||||
request_paste(inst);
|
request_paste(inst);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user