mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 11:03:00 +01:00
If MAC is defined Cmd+V will be used instead.
This commit is contained in:
@@ -402,7 +402,12 @@ void platform_process_messages()
|
||||
else if (e.key.keysym.sym == SDLK_RIGHT && gTextInput){
|
||||
if (gTextInputCursorPosition < gTextInputLength) gTextInputCursorPosition++;
|
||||
}
|
||||
// Checks GUI modifier key for Macs otherwise ctrl key
|
||||
#ifdef MAC
|
||||
else if (e.key.keysym.sym == SDLK_v && SDL_GetModState() & KMOD_GUI && gTextInput) {
|
||||
#else
|
||||
else if (e.key.keysym.sym == SDLK_v && SDL_GetModState() & KMOD_CTRL && gTextInput) {
|
||||
#endif
|
||||
if (SDL_HasClipboardText()) {
|
||||
char* text = SDL_GetClipboardText();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user