init tab data container

This commit is contained in:
yggverse 2024-08-13 08:07:56 +03:00
parent d9b4983d4f
commit 3918ab9993
6 changed files with 41 additions and 3 deletions

View file

@ -0,0 +1,16 @@
#include "data.hpp"
using namespace app::browser::main::tab;
Data::Data()
{
set_orientation(
Gtk::Orientation::VERTICAL
);
set_homogeneous(
true
);
}
Data::~Data() = default;