WebViewPanel: enable dev tools

This commit is contained in:
Jan Bařtipán 2024-06-20 10:39:35 +02:00 committed by Lukas Matena
parent e70ee320d9
commit 0ea1f9f89a

View File

@ -129,6 +129,9 @@ WebViewPanel::WebViewPanel(wxWindow *parent, const wxString& default_url, const
#endif
//Connect the idle events
Bind(wxEVT_IDLE, &WebViewPanel::on_idle, this);
m_browser->EnableContextMenu(true);
m_browser->EnableAccessToDevTools(true);
}
WebViewPanel::~WebViewPanel()