complete save to file action

This commit is contained in:
yggverse 2024-07-12 18:54:17 +03:00
parent 38203c2ffe
commit 9b5c434ad1

View file

@ -58,10 +58,13 @@ class Save
if (\GtkResponseType::APPLY == $dialog->run()) if (\GtkResponseType::APPLY == $dialog->run())
{ {
file_put_contents( if ($page = $this->file->menu->browser->container->tab->getPage())
$dialog->get_filename(), {
'' // @TODO get active tab content file_put_contents(
); $dialog->get_filename(),
$page->content->data->raw
);
}
} }
$dialog->destroy(); $dialog->destroy();