mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
init container constructor
This commit is contained in:
parent
56c63e73c7
commit
00bd8204b8
2 changed files with 12 additions and 0 deletions
|
|
@ -19,4 +19,11 @@ Browser::Header::Header()
|
|||
set_show_title_buttons(
|
||||
SHOW_TITLE_BUTTONS
|
||||
);
|
||||
}
|
||||
|
||||
Browser::Container::Container()
|
||||
{
|
||||
set_scrollable(
|
||||
SCROLLABLE
|
||||
);
|
||||
}
|
||||
|
|
@ -28,7 +28,12 @@ namespace app
|
|||
|
||||
class Container : Gtk::Notebook
|
||||
{
|
||||
public:
|
||||
|
||||
const bool SCROLLABLE = true;
|
||||
const bool REORDERABLE = true;
|
||||
|
||||
Container();
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue