init base button class

This commit is contained in:
yggverse 2024-08-13 08:40:17 +03:00
parent 3136b0b21c
commit 940c98f3c6
6 changed files with 59 additions and 0 deletions

View file

@ -0,0 +1,20 @@
#include "base.hpp"
using namespace app::browser::main::tab::data::navbar;
Base::Base()
{
set_action_name(
"tab.base"
);
set_icon_name(
"go-home-symbolic"
);
set_tooltip_text(
_("Base")
);
}
Base::~Base() = default;