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

Maps: Use name + coordinates in search marker tooltip

This commit is contained in:
Bastiaan van der Plaat 2023-09-27 22:03:54 +02:00 committed by Andrew Kaster
parent 54ec744398
commit f35791343e
4 changed files with 5 additions and 5 deletions

View file

@ -18,8 +18,8 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
auto app = TRY(GUI::Application::create(arguments));
TRY(Core::System::unveil("/res", "r"));
TRY(Core::System::unveil("/home", "r"));
TRY(Core::System::unveil("/res", "r"));
TRY(Core::System::unveil("/tmp/session/%sid/portal/config", "rw"));
TRY(Core::System::unveil(nullptr, nullptr));