1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:57:45 +00:00

Ladybird/Qt: Make the Inspector widget owned by its parent tab

This ensures the Inspector is closed when the BrowserWindow which owns
the tab is closed.
This commit is contained in:
Timothy Flynn 2023-12-04 11:03:40 -05:00 committed by Andrew Kaster
parent 4653733a0d
commit c55d8a9971
3 changed files with 4 additions and 3 deletions

View file

@ -13,7 +13,8 @@ namespace Ladybird {
extern bool is_using_dark_system_theme(QWidget&);
InspectorWidget::InspectorWidget(WebContentView& content_view)
InspectorWidget::InspectorWidget(QWidget* tab, WebContentView& content_view)
: QWidget(tab, Qt::Window)
{
m_inspector_view = new WebContentView({}, {});