diff --git a/README.md b/README.md index 63d9b93a..6451efd5 100644 --- a/README.md +++ b/README.md @@ -585,7 +585,6 @@ _`Meta` is typically the `Windows` key on the keyboard, or `Cmd` on macOS._ | Press COPY³, then Copy device clipboard to computer | `Meta`+`c` | Press CUT³ | `Meta`+`x` | Paste computer clipboard to device | `Meta`+`v` - | Copy computer clipboard to device, then press PASTE³ | `Meta`+`Shift`+`v` | Enable/disable FPS counter (on stdout) | `Meta`+`i` _¹Double-click on black borders to remove them._ diff --git a/app/scrcpy.1 b/app/scrcpy.1 index 6d1893a1..a790bbd8 100644 --- a/app/scrcpy.1 +++ b/app/scrcpy.1 @@ -287,10 +287,6 @@ Press CUT (Android >= 7) .B Meta+v Paste computer clipboard to device -.TP -.B Meta+Shift+v -Copy computer clipboard to device, then press PASTE (Android >= 7) - .TP .B Meta+i Enable/disable FPS counter (print frames/second in logs) diff --git a/app/src/cli.c b/app/src/cli.c index 1c2f93e8..11000712 100644 --- a/app/src/cli.c +++ b/app/src/cli.c @@ -254,10 +254,6 @@ scrcpy_print_usage(const char *arg0) { " " MOD "+v\n" " Paste computer clipboard to device\n" "\n" - " " MOD "+Shift+v\n" - " Copy computer clipboard to device, then press PASTE (Android\n" - " >= 7)\n" - "\n" " " MOD "+i\n" " Enable/disable FPS counter (print frames/second in logs)\n" "\n" diff --git a/app/src/input_manager.c b/app/src/input_manager.c index ac4b322b..16cc8097 100644 --- a/app/src/input_manager.c +++ b/app/src/input_manager.c @@ -361,15 +361,9 @@ input_manager_process_key(struct input_manager *im, } return; case SDLK_v: - if (control && !repeat && down) { - if (shift) { - // Store the text in the device clipboard, then press - // PASTE - set_device_clipboard(controller, true); - } else { - // Inject the text as input events - clipboard_paste(controller); - } + if (control && !shift && !repeat && down) { + // Inject the text as input events + clipboard_paste(controller); } return; case SDLK_f: