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

Ladybird: Load fonts via Core::Resource URIs instead of filesystem paths

This commit is contained in:
Andrew Kaster 2023-10-03 15:40:24 -06:00 committed by Andrew Kaster
parent e03357308c
commit 2e759656de
2 changed files with 5 additions and 5 deletions

View file

@ -8,6 +8,7 @@
#include "Utilities.h"
#include <AK/LexicalPath.h>
#include <AK/Platform.h>
#include <LibCore/ResourceImplementationFile.h>
#include <LibCore/System.h>
#include <LibFileSystem/FileSystem.h>
@ -39,6 +40,8 @@ void platform_init()
return LexicalPath(app_dir).parent().append("share"sv).string();
#endif
}();
Core::ResourceImplementation::install(make<Core::ResourceImplementationFile>(MUST(String::formatted("{}/res", s_serenity_resource_root))));
}
ErrorOr<Vector<String>> get_paths_for_helper_process(StringView process_name)