draft action open

This commit is contained in:
yggverse 2024-09-14 12:05:48 +03:00
parent 2a0b9f194f
commit 072a64dac7
2 changed files with 19 additions and 1 deletions

View file

@ -117,7 +117,13 @@ Reader::Reader(
signal_activate_link().connect(
[this](const Glib::ustring & URI) -> bool
{
// @TODO follow action
// Open link URI
activate_action(
"win.open",
Glib::Variant<Glib::ustring>::create(
URI
)
);
return false;
},