mirror of https://github.com/OpenTTD/OpenTTD
Feature: Allow Shift+Insert as paste in edit box (#9836)
parent
1a17b6c8f6
commit
0d9fdeda8e
|
@ -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…
Reference in New Issue