Ladybird: The JS console widget should be a standalone window

...not part of the WebView. Its lifetime is managed by a QPointer.
This commit is contained in:
Andreas Kling 2022-10-02 11:17:11 +02:00 committed by Andrew Kaster
parent b2ba91123b
commit c2230d5fe8

View file

@ -586,7 +586,7 @@ void SimpleWebView::did_get_js_console_messages(i32, Vector<String>, Vector<Stri
void SimpleWebView::ensure_js_console_widget()
{
if (!m_js_console_widget) {
m_js_console_widget = new QWidget(this);
m_js_console_widget = new QWidget;
m_js_console_widget->setWindowTitle("JS Console");
auto* layout = new QVBoxLayout(m_js_console_widget);
m_js_console_widget->setLayout(layout);