I'm trying to get CEFPython
running on my High DPI laptop screen. Currently, I call the following:
sys.excepthook = cef.ExceptHook # To shutdown all CEF processes on error
cef.Initialize()
cef.DpiAware.EnableHighDpiSupport()
cef.CreateBrowserSync(url="http://localhost:4994",
window_title="Fabel")
cef.MessageLoop()
cef.Shutdown()
This causes the ensuing problem to occur:
Looking online I found a few references to the same problem from other people:
However, I don't have the knowledge to apply it directly to CEFPython
. Any help would be appreciated!