fix init browser container

This commit is contained in:
yggverse 2024-08-06 07:41:40 +03:00
parent 45268c6e35
commit 8fd7e1eec1
3 changed files with 27 additions and 9 deletions

View file

@ -14,13 +14,7 @@ namespace app
Container::SPACING
);
gtk_widget_show(
GTK_WIDGET(
this->gtk
)
);
// Init tab
// Init tabs component
this->tab = new container::Tab(
this
);
@ -30,7 +24,14 @@ namespace app
this->gtk
),
GTK_WIDGET(
this->tab
this->tab->gtk
)
);
// Render
gtk_widget_show(
GTK_WIDGET(
this->gtk
)
);
}