1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-25 07:29:10 +00:00

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

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;