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

PixelPaint: Add list of recently opened files to the file menu

This commit is contained in:
Tim Ledbetter 2023-03-08 18:56:17 +00:00 committed by Andreas Kling
parent 4accc6a61f
commit 4fd12b6b79
2 changed files with 10 additions and 0 deletions

View file

@ -25,6 +25,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
auto app = TRY(GUI::Application::try_create(arguments));
Config::pledge_domain("PixelPaint");
app->set_config_domain(TRY(String::from_utf8("PixelPaint"sv)));
StringView image_file;
Core::ArgsParser args_parser;