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