HackStudio: Unbreak the form editor's widget icons

This is breakage from the GFoo => GUI::Foo rename.
This commit is contained in:
Andreas Kling 2020-02-17 21:49:17 +01:00
parent 25b987ce4c
commit 0bb4111735
Notes: sideshowbarker 2024-07-19 09:15:17 +09:00

View file

@ -283,7 +283,7 @@ int main(int argc, char** argv)
form_widgets_toolbar->add_action(cursor_tool_action);
GUI::WidgetClassRegistration::for_each([&](const GUI::WidgetClassRegistration& reg) {
auto icon_path = String::format("/res/icons/widgets/%s.png", reg.class_name().characters());
auto icon_path = String::format("/res/icons/widgets/G%s.png", reg.class_name().characters());
auto action = GUI::Action::create(reg.class_name(), Gfx::Bitmap::load_from_file(icon_path), [&reg](auto&) {
g_form_editor_widget->set_tool(make<WidgetTool>(*g_form_editor_widget, reg));
auto widget = reg.construct(&g_form_editor_widget->form_widget());