mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
20 lines
288 B
C++
20 lines
288 B
C++
#include "update.hpp"
|
|
|
|
using namespace app::browser::main::tab::data::navbar;
|
|
|
|
Update::Update()
|
|
{
|
|
set_action_name(
|
|
"tab.update"
|
|
);
|
|
|
|
set_icon_name(
|
|
"view-refresh-symbolic"
|
|
);
|
|
|
|
set_tooltip_text(
|
|
_("Update")
|
|
);
|
|
}
|
|
|
|
Update::~Update() = default;
|