remove extra defaults

This commit is contained in:
yggverse 2024-08-12 21:22:13 +03:00
parent fa52a8fa70
commit b2ce53f6d8
2 changed files with 3 additions and 22 deletions

View File

@ -5,7 +5,7 @@ using namespace app::browser::main;
Tab::Tab()
{
set_scrollable(
SCROLLABLE
true
);
}
@ -18,7 +18,7 @@ void Tab::append(
) {
// Init new tab label
Gtk::Label * name = new Gtk::Label(
LABEL
_("New tab")
);
// Setup label controller
@ -50,7 +50,7 @@ void Tab::append(
set_tab_reorderable(
* data,
REORDERABLE
true
);
if (focus)

View File

@ -20,25 +20,6 @@ namespace app::browser::main
public:
const bool SCROLLABLE = true;
const bool REORDERABLE = true;
const char * LABEL = _("New tab");
class Navbar
{
public:
Navbar();
};
class Body
{
public:
Body();
};
Tab();
~Tab();