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

This commit is contained in:
Dave Shifflett 2022-03-15 16:33:22 -05:00 committed by GitHub
parent 1a17b6c8f6
commit 0d9fdeda8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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