diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2022-07-24 15:29:26 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-08-14 21:52:35 +0100 |
commit | 1da9375400533961cc5ac8992ad4bae827882470 (patch) | |
tree | 511ebcdb478084e90819c6dd063915f5f2668843 /Userland/Applications/PixelPaint/main.cpp | |
parent | e8115bfdb17a4792f50402ce22884910ee7de2ea (diff) | |
download | serenity-1da9375400533961cc5ac8992ad4bae827882470.zip |
Base: Launch ImageDecoder at session start-up
Diffstat (limited to 'Userland/Applications/PixelPaint/main.cpp')
-rw-r--r-- | Userland/Applications/PixelPaint/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/PixelPaint/main.cpp b/Userland/Applications/PixelPaint/main.cpp index d3eb61a4b5..bb73e1e4a8 100644 --- a/Userland/Applications/PixelPaint/main.cpp +++ b/Userland/Applications/PixelPaint/main.cpp @@ -34,7 +34,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) TRY(Core::System::unveil("/res", "r")); TRY(Core::System::unveil("/tmp/portal/clipboard", "rw")); TRY(Core::System::unveil("/tmp/user/%uid/portal/filesystemaccess", "rw")); - TRY(Core::System::unveil("/tmp/portal/image", "rw")); + TRY(Core::System::unveil("/tmp/user/%uid/portal/image", "rw")); TRY(Core::System::unveil("/etc/FileIconProvider.ini", "r")); TRY(Core::System::unveil(nullptr, nullptr)); |