init tab class

This commit is contained in:
yggverse 2024-08-05 03:52:02 +03:00
parent 3e24a6fb72
commit 3bcffc4326
5 changed files with 90 additions and 0 deletions

View file

@ -19,6 +19,20 @@ namespace app
this->gtk
)
);
// Init tab
this->tab = new container::Tab(
this
);
gtk_box_append(
GTK_BOX(
this->gtk
),
GTK_WIDGET(
this->tab
)
);
}
}
}