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

Base: Rename icon subdirectories by explicit app name

Renames widgets/ to hackstudio/, vbwidgets/ to visualbuilder/ and
paintbrush/ to pixelpaint/.
This commit is contained in:
thankyouverycool 2020-08-24 07:33:01 -04:00 committed by Andreas Kling
parent a06f803c29
commit 8a364c503d
32 changed files with 12 additions and 12 deletions

View file

@ -121,7 +121,7 @@ void ToolboxWidget::setup_tools()
button.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed);
button.set_preferred_size(0, 32);
button.set_checkable(true);
button.set_icon(Gfx::Bitmap::load_from_file(String::format("/res/icons/paintbrush/%s.png", icon_name.to_string().characters())));
button.set_icon(Gfx::Bitmap::load_from_file(String::format("/res/icons/pixelpaint/%s.png", icon_name.to_string().characters())));
return button;
};