mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 23:58:11 +00:00
LibFSAC+Userland: Pass options for FSAC::open_file() using a struct
It was rather inconvenient having to specify all arguments if you wanted to modify only the last one.
This commit is contained in:
parent
5c07aeb78e
commit
27011cf55d
10 changed files with 34 additions and 16 deletions
|
@ -161,11 +161,14 @@ ErrorOr<void> MainWidget::initialize_menubar(GUI::Window& window)
|
|||
auto open_action = GUI::CommonActions::make_open_action([&](auto&) {
|
||||
if (request_close() == GUI::Window::CloseRequestDecision::StayOpen)
|
||||
return;
|
||||
auto response = FileSystemAccessClient::Client::the().open_file(&window, {}, "/usr/src/serenity/Userland/Applications"sv, Core::File::OpenMode::Read,
|
||||
Vector {
|
||||
FileSystemAccessClient::OpenFileOptions options {
|
||||
.path = "/usr/src/serenity/Userland/Applications"sv,
|
||||
.allowed_file_types = Vector {
|
||||
GUI::FileTypeFilter { "GML Files", { { "gml" } } },
|
||||
GUI::FileTypeFilter::all_files(),
|
||||
});
|
||||
}
|
||||
};
|
||||
auto response = FileSystemAccessClient::Client::the().open_file(&window, options);
|
||||
if (response.is_error())
|
||||
return;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue