1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:28:12 +00:00

Browser: Add option in DownloadWidget to open download's in folder

When a download has completed, instead of graying out the cancel
option, replace it with an option to open your download in the file
manager.
This commit is contained in:
FalseHonesty 2020-05-26 12:54:58 -04:00 committed by Andreas Kling
parent 4a9deddb4a
commit e4760e5b42
3 changed files with 17 additions and 3 deletions

View file

@ -64,7 +64,8 @@ int main(int argc, char** argv)
// Connect to the ProtocolServer immediately so we can drop the "unix" pledge.
Web::ResourceLoader::the();
if (pledge("stdio shared_buffer accept cpath rpath wpath", nullptr) < 0) {
// FIXME: Once there is a standalone Download Manager, we can drop the "unix" pledge.
if (pledge("stdio shared_buffer accept unix cpath rpath wpath", nullptr) < 0) {
perror("pledge");
return 1;
}
@ -84,6 +85,12 @@ int main(int argc, char** argv)
return 1;
}
// FIXME: Once there is a standalone Download Manager, we don't need to unveil this
if (unveil("/tmp/portal/launch", "rw") < 0) {
perror("unveil");
return 1;
}
unveil(nullptr, nullptr);
auto m_config = Core::ConfigFile::get_for_app("Browser");