소스 검색

HackStudio: Unbreak the form editor's widget icons

This is breakage from the GFoo => GUI::Foo rename.
Andreas Kling 5 년 전
부모
커밋
0bb4111735
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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());