-
Notifications
You must be signed in to change notification settings - Fork 137
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
Browser: Add option to force showing browser-native context menu? #1585
Comments
Should it from SWT perspective not being some kind of |
We already can do that with the current API:
but it requires each consumer to handle this. I am looking for a more central I want to debug Browser / javascript, please let me access the context menu / dev tools switch. |
The proposal sounds reasonable to me. When I ran into the situation that I wanted to have the native context menu when a custom one was implemented, I also manually changed the according code temporarily. So I definitely see a use case for this. |
With 2024-06 it was possible to press F12 to open the Edge Debug Menu, with 2024-09 this is no longer working. |
When setting a custom menu to a Browser the browser-native context menu is suppressed.
The native menu, however, is typically the entry point to browser troubleshooting and debug tools. Accessing them is cumbersome and requires code changes to temporarily remove the menu customization.
For troubleshooting / development use-cases it would be nice to have Browser ignore suppressed context menus and always show the native context menu.
I am thinking about having a VM parameter such as
org.eclipse.swt.browser.ignoreSuppressedContextMenu=true
or similar to force-enable the native context menu.This menu might then show in addition to the custom menu.
@HeikoKlare wdyt?
The text was updated successfully, but these errors were encountered: