Jelajahi Sumber

HackStudio: Unbreak the form editor's widget icons

This is breakage from the GFoo => GUI::Foo rename.
Andreas Kling 5 tahun lalu
induk
melakukan
0bb4111735
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      DevTools/HackStudio/main.cpp

+ 1 - 1
DevTools/HackStudio/main.cpp

@@ -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());