init container constructor

This commit is contained in:
yggverse 2024-08-08 13:33:23 +03:00
parent 56c63e73c7
commit 00bd8204b8
2 changed files with 12 additions and 0 deletions

View File

@ -19,4 +19,11 @@ Browser::Header::Header()
set_show_title_buttons(
SHOW_TITLE_BUTTONS
);
}
Browser::Container::Container()
{
set_scrollable(
SCROLLABLE
);
}

View File

@ -28,7 +28,12 @@ namespace app
class Container : Gtk::Notebook
{
public:
const bool SCROLLABLE = true;
const bool REORDERABLE = true;
Container();
};
};
}