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

LibDesktop: Remove icons from Desktop::Launcher::Details

This commit is contained in:
Linus Groh 2020-12-25 23:59:05 +01:00 committed by Andreas Kling
parent 721b00a83a
commit d4a60583a9
2 changed files with 0 additions and 7 deletions

View file

@ -51,11 +51,6 @@ auto Launcher::Details::from_details_str(const String& details_str) -> NonnullRe
else if (type_str == "userdefault")
details->launcher_type = LauncherType::UserDefault;
}
if (auto icons_value = obj.get_ptr("icons")) {
icons_value->as_object().for_each_member([&](auto& name, auto& value) {
details->icons.set(name, value.to_string());
});
}
return details;
}