Feature: Allow Shift+Insert as paste in edit box (#9836)

pull/379/head
Dave Shifflett 2 years ago committed by GitHub
parent 1a17b6c8f6
commit 0d9fdeda8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -475,6 +475,7 @@ HandleKeyPressResult Textbuf::HandleKeyPress(WChar key, uint16 keycode)
case WKC_RETURN: case WKC_NUM_ENTER: return HKPR_CONFIRM;
case (WKC_CTRL | 'V'):
case (WKC_SHIFT | WKC_INSERT):
edited = this->InsertClipboard();
break;

Loading…
Cancel
Save