diff --git a/Base/res/icons/16x16/filetype-gml.png b/Base/res/icons/16x16/filetype-gml.png new file mode 100644 index 0000000000..b7be944e8d Binary files /dev/null and b/Base/res/icons/16x16/filetype-gml.png differ diff --git a/Base/res/icons/32x32/filetype-gml.png b/Base/res/icons/32x32/filetype-gml.png new file mode 100644 index 0000000000..258450cc80 Binary files /dev/null and b/Base/res/icons/32x32/filetype-gml.png differ diff --git a/Userland/DevTools/HackStudio/HackStudioWidget.cpp b/Userland/DevTools/HackStudio/HackStudioWidget.cpp index a331c88198..464f4bc7f3 100644 --- a/Userland/DevTools/HackStudio/HackStudioWidget.cpp +++ b/Userland/DevTools/HackStudio/HackStudioWidget.cpp @@ -387,8 +387,7 @@ NonnullRefPtr HackStudioWidget::create_project_tree_view_context_menu { m_new_file_actions.append(create_new_file_action("C++ Source File", "/res/icons/16x16/filetype-cplusplus.png", "cpp")); m_new_file_actions.append(create_new_file_action("C++ Header File", "/res/icons/16x16/filetype-header.png", "h")); - // FIXME: Create a file icon for GML files - m_new_file_actions.append(create_new_file_action("GML File", "/res/icons/16x16/new.png", "gml")); + m_new_file_actions.append(create_new_file_action("GML File", "/res/icons/16x16/filetype-gml.png", "gml")); m_new_file_actions.append(create_new_file_action("JavaScript Source File", "/res/icons/16x16/filetype-javascript.png", "js")); m_new_file_actions.append(create_new_file_action("HTML File", "/res/icons/16x16/filetype-html.png", "html")); // FIXME: Create a file icon for CSS files