1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-14 02:33:51 +02:00

added missing check for ctrl

This commit is contained in:
Michael 2023-07-22 14:26:37 +02:00 committed by GitHub
parent 59f3740aea
commit 746f8c5e62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,7 @@ void InputSourceKeyboard::handleEventKeyDown(const SDL_KeyboardEvent & key)
{
if (SDL_IsTextInputActive() == SDL_TRUE)
{
if(key.keysym.sym == SDLK_v) {
if(key.keysym.sym == SDLK_v && isKeyboardCtrlDown()) {
std::string clipboardContent = SDL_GetClipboardText();
boost::erase_all(clipboardContent, "\r");
boost::erase_all(clipboardContent, "\n");