diff --git a/Userland/DevTools/GMLPlayground/MainWidget.cpp b/Userland/DevTools/GMLPlayground/MainWidget.cpp index 33a142174f..78392b78a1 100644 --- a/Userland/DevTools/GMLPlayground/MainWidget.cpp +++ b/Userland/DevTools/GMLPlayground/MainWidget.cpp @@ -13,6 +13,7 @@ #include #include #include +#include #include #include #include @@ -160,7 +161,11 @@ ErrorOr 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); + auto response = FileSystemAccessClient::Client::the().open_file(&window, {}, "/usr/src/serenity/Userland/Applications"sv, Core::File::OpenMode::Read, + Vector { + GUI::FileTypeFilter { "GML Files", { { "gml" } } }, + GUI::FileTypeFilter::all_files(), + }); if (response.is_error()) return;