mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
append content container
This commit is contained in:
parent
d42ac9ccb8
commit
0f679d0e79
2 changed files with 14 additions and 5 deletions
|
|
@ -1,5 +1,6 @@
|
|||
#include "data.hpp"
|
||||
#include "data/navbar.hpp"
|
||||
#include "data/content.hpp"
|
||||
|
||||
using namespace app::browser::main::tab;
|
||||
|
||||
|
|
@ -13,9 +14,15 @@ Data::Data()
|
|||
// Init components
|
||||
navbar = new data::Navbar();
|
||||
|
||||
append(
|
||||
* navbar
|
||||
);
|
||||
append(
|
||||
* navbar
|
||||
);
|
||||
|
||||
content = new data::Content();
|
||||
|
||||
append(
|
||||
* content
|
||||
);
|
||||
|
||||
// Init actions group
|
||||
action_group = Gio::SimpleActionGroup::create();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue