You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The mouse right-click context menu in CEFPython does not show up on my Linux machine any more (which makes it impossible to debug the Web-Frontend).
I have the sneaking suspicion that it might have occured since the time I last updated my system (to GNOME 3.32.1)
My system specs are:
Python 3.7.3
CEFPython 66.0
Manjaro Linux x64
GTK 3.24.8-1, GNOME 3.32.1 (Wayland)
The code I use to start CEFPython is basically:
definit_gui():
sys.excepthook=cef.ExceptHook# To shutdown all CEF processes on errorsettings= {
"context_menu": {
"enabled": True,
"devtools": True
}
}
cef.Initialize(settings=settings)
browser=cef.CreateBrowserSync(url=f'file:///{get_html_file_path()}', window_title="KnowLink")
# browser = cef.CreateBrowserSync(url="localhost:8080", window_title="KnowLink")set_javascript_bindings(browser)
cef.MessageLoop()
cef.Shutdown()
I tried it with and without the custom settings. There is just no context menu showing up (and the shortcuts F12 or Ctrl + Shift + i do not work either to bring up the devtools.
The only message I get in the console when starting the application is:
DevTools listening on ws://127.0.0.1:64409/devtools/browser/d24cd661-e092-4724-8bcc-3ebb7ebb584a
[0503/121003.809836:ERROR:sandbox_linux.cc(379)] InitializeSandbox() called with multiple threads in process gpu-process.
Could this issue be caused by an update or is there maybe some sort of configuration(-file) for CEFPython that cloud have been changed or deleted accidentally?
The text was updated successfully, but these errors were encountered:
Does it work in hello_world.py example? Does it work in other examples? (wxpython.py, qt.py). You can show Developer Tools popup programmatically by calling Browser.ShowDevTools.
The mouse right-click context menu in CEFPython does not show up on my Linux machine any more (which makes it impossible to debug the Web-Frontend).
I have the sneaking suspicion that it might have occured since the time I last updated my system (to GNOME 3.32.1)
My system specs are:
The code I use to start CEFPython is basically:
I tried it with and without the custom settings. There is just no context menu showing up (and the shortcuts
F12
orCtrl + Shift + i
do not work either to bring up the devtools.The only message I get in the console when starting the application is:
Could this issue be caused by an update or is there maybe some sort of configuration(-file) for CEFPython that cloud have been changed or deleted accidentally?
The text was updated successfully, but these errors were encountered: