Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Why is the Ctrl + Click shortcut bound to Right Click #10013

Open
wangzhe258369 opened this issue Oct 19, 2024 · 0 comments
Open

Why is the Ctrl + Click shortcut bound to Right Click #10013

wangzhe258369 opened this issue Oct 19, 2024 · 0 comments

Comments

@wangzhe258369
Copy link

Is your feature request related to a problem? Please describe.
Why is the Ctrl + Click shortcut bound to Right Click here?

if (event.which === 3 || event.which === 1 && event.ctrlKey) {

if (event.which === 3 || event.which === 1 && event.ctrlKey) {

Describe the solution you'd like
There are no such common shortcuts under Windows, and Ctrl + Click sometimes conflicts with the "Open URL" shortcut. If this is an operating system-specific issue or tradition, I think it can be combined with the operating system, not for all users.

Describe alternatives you've considered
I think it will be better:

if (event.which === 3) {
    XXX
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant