WIP remove Meta+Shift+v
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user