mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
20 lines
No EOL
255 B
C++
20 lines
No EOL
255 B
C++
#include "tab.hpp"
|
|
|
|
using namespace app::browser::header;
|
|
|
|
Tab::Tab()
|
|
{
|
|
set_action_name(
|
|
"win.tab_append"
|
|
);
|
|
|
|
set_icon_name(
|
|
"tab-new-symbolic"
|
|
);
|
|
|
|
set_tooltip_text(
|
|
_("New tab")
|
|
);
|
|
}
|
|
|
|
Tab::~Tab() = default; |