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

[Feature] Add an option to disable "mobile popup" #818

Open
1 task done
indrastorms opened this issue Mar 31, 2024 · 1 comment
Open
1 task done

[Feature] Add an option to disable "mobile popup" #818

indrastorms opened this issue Mar 31, 2024 · 1 comment
Labels
enhancement New feature or request

Comments

@indrastorms
Copy link

Is your feature request related to a problem? Please describe

It interferes with "three finger screenshot"

Describe the solution you'd like

Add "never" option here
Screenshot_20240331-234155

Describe alternatives you've considered

No response

Additional context

No response

Did you fill in all the fields correctly?

  • Yes, everything is fine!
@indrastorms indrastorms added the enhancement New feature or request label Mar 31, 2024
@kernc
Copy link

kernc commented Apr 1, 2024

👍 The OS-level three-finger swipe screenshot is non-configurable on this OS.

Maybe the exact finger gesture for the extension should be configurable, or at least a way to disable it / run app only from the menu?

Another thing that would work for me is if the condition in:

// show/hide popup on 3 finger tap
window.addEventListener("touchstart", (e) => {
if (e.touches.length == 3) {
if (rootElement.isConnected) {
hidePopup();
} else {
showPopup();
}
}
});

were made more strict and also checked that I'm not on a page in one of my known/preferred/never-translate languages ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants